有趣且重要的JS知识合集(19)前端实现图片的本地上传/截取/导出

input[file]太丑了,又不想去改button样式,那就自己实现一个上传按钮的div,然后点击此按钮时,去触发file上传的事件, 以下就是 原生js实现图片前端上传 并且按照最佳宽高比例展示图片,然后可以自定义截取图片,右侧预览区域 可以看到截图,最后还可以导出图片

1、效果图:

左侧为编辑区域,右侧为预览区域

2、文件目录 

3、实现源码: 

1、index.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>image-cut</title>
  <link rel="stylesheet" href="./assets/reset.css" />
  <link rel="stylesheet" href="./assets/main.css" />
  <link rel="stylesheet" href="./assets/rect.css" />
</head>
<!-- 图片裁剪 -->
<body>
  <div id="root">
    <div id="tool" class="tool">
      <span id="insert-img" title="插入你想要截图的图片">插入图片</span>
      <span id="start-paint" title="绘制矩形框并在右侧展示区生成canvas">开始截图</span>
      <span id="clear" title="清除矩形框并清除右侧截图">清除截图</span>
      <span id="export-clip" title="将右侧截图下载到本地">导出截图</span>
    </div>
    <div class="container">
      <div id="control" class="area">
        <div id="rect" class="rect">
          <span class="left-top dot"></span>
          <span class="middle-top dot"></span>
          <span class="right-top dot"></span>
          <span class="right-middle dot"></span>
          <span class="right-bottom dot"></span>
          <span class="middle-bottom dot"></span>
          <span class="left-bottom dot"></span>
          <span class="left-middle dot"></span>
        </div>
        <div class="img-box">
          <img />
        </div>
      </div>
      <div id="display" class="area display">
        <canvas></canvas>
      </div>
    </div>
  </div>
  <!-- 矩形框脚本 -->
  <script type="module" src="./srcipt/rect.js"></script>
  <!-- 主控制区脚本 -->
  <script type="module" src="./srcipt/main.js"></script>
</body>
</html>

2、/script/rect.js

import {
  methods
} from './main.js'

const dom = document.querySelector('#control')
const rect  = document.querySelector('#rect')
const origin = dom.getBoundingClientRect()
const parentBorder = Number(getComputedStyle(dom, null).borderWidth.split('px')[0]) // 父元素边框 如果你明确知道边框宽度,就不需要这行,直接赋值就行
const childBorder = Number(getComputedStyle(rect, null).borderWidth.split('px')[0]) // 子元素边框 如果你明确知道边框宽度,就不需要这行,直接赋值就行
let finallPoint
/**
 * 开始绘制
 */
const startMouse = () => {
  dom.style.cursor = 'crosshair'
  dom.onmousedown = e => {
    if (e.target !== dom) return
    const left = e.offsetX
    const top = e.offsetY
    rect.style.left = left + 'px'
    rect.style.top = top + 'px'
    rect.style.borderColor = getCurrentColor() // 绘制时使用选择的框的颜色
    const childs = rect.children
    for (let i = 0; i < childs.length; i++) {
      childs[i].style.borderColor = getCurrentColor() // 绘制时使用选择的框的颜色
    }
    dom.onmousemove = e => {
      // 宽高边界限制
      const widthArea = e.clientX - origin.x > dom.offsetWidth - (parentBorder * 2) ? dom.offsetWidth - (parentBorder * 2) : e.clientX - origin.x
      const heightArea = e.clientY - origin.y > dom.offsetHeight - (parentBorder * 2) ? dom.offsetHeight - (parentBorder * 2) : e.clientY - origin.y
      rect.style.width = widthArea - left + 'px'
      rect.style.height = heightArea - top + 'px'
    }
    dom.onmouseup = e => {
      generatePoint()
      dom.onmousedown = null
      dom.onmousemove = null
      dom.onmouseup = null
      dom.style.cursor = ''
      editMouse()
    }
  }
}
const editMouse = () => {
  rect.onmousedown = e => {
    if (e.target !== rect && e.target.className.indexOf('dot') === -1) return // 类名中包含被放行的dot除外
    const flag = mousedownHandle(e)
    let left = e.clientX
    let top = e.clientY
    const width = rect.offsetWidth
    const height = rect.offsetHeight
    const [dragX, dragY] = flag
    // 拖动
    if (dragX === -1 && dragY === -1) {
      left -= rect.offsetLeft // 要保持之前矩形框的坐标值
      top -= rect.offsetTop
    }
    const child = e.target.getBoundingClientRect()
    document.onmousemove = e => {
      // 取消浏览器因回流导致的默认事件及冒泡事件
      e.preventDefault()
      if (e.stopPropagation) {
        e.stopPropagation()
      } else {
        e.cancelable = true
      }
      finallPoint = {
        left: 0,
        top: 0,
        width: 0,
        height: 0
      }
      if (dragX === -1 && dragY === -1) {
        rect.style.cursor = 'move'
        const rightArea = dom.offsetWidth - rect.offsetWidth // 右边界
        const bottomArea = dom.offsetHeight - rect.offsetHeight // 下边界
        const leftArea = 0 // 左边界
        const topArea = 0 // 上边界
        finallPoint.left = e.clientX - left > rightArea ? rightArea : (e.clientX - left< leftArea ? leftArea : e.clientX - left)
        finallPoint.top = e.clientY - top > bottomArea ? bottomArea : (e.clientY - top < topArea ? topArea : e.clientY - top)
        rect.style.left = finallPoint.left + 'px'
        rect.style.top = finallPoint.top + 'px'
      } else if (dragX === 0 && dragY === 0) { // 左上角拉伸
        finallPoint.left = e.clientX > origin.x ? ((e.clientX > (left + width)) ? left + width - origin.x : e.clientX - origin.x) : 0
        finallPoint.top = e.clientY > origin.y ? ((e.clientY > (top + height)) ? top + height - origin.y : e.clientY - origin.y) : 0
        finallPoint.width = e.clientX > origin.x ? ((e.clientX > (left + width)) ? 0 : width + (left - e.clientX)) : width + (left - origin.x)
        finallPoint.height = e.clientY > origin.y ? ((e.clientY > (top + height)) ? 0 : height + (top - e.clientY)) : height + (top - origin.y)
        rect.style.left = finallPoint.left + 'px'
        rect.style.top = finallPoint.top + 'px'
        rect.style.width = finallPoint.width + 'px'
        rect.style.height = finallPoint.height + 'px'
      } else if (dragX === 1 && dragY === 0) { // 中上拉伸
        finallPoint.top = e.clientY > origin.y ? ((e.clientY > (top + height)) ? top + height - origin.y : e.clientY - origin.y) : 0
        finallPoint.height = e.clientY > origin.y ? ((e.clientY > (top + height)) ? 0 : height + (top - e.clientY)) : height + (top - origin.y)
        rect.style.top = finallPoint.top + 'px'
        rect.style.height = finallPoint.height + 'px'
      } else if (dragX === 2 && dragY === 0) { // 右上角拉伸
        finallPoint.top = e.clientY > origin.y ? ((e.clientY > (top + height)) ? top + height - origin.y : e.clientY - origin.y) : 0
        finallPoint.width = (e.clientX - left + width > dom.offsetWidth - rect.offsetLeft - (parentBorder * 2) ? dom.offsetWidth - rect.offsetLeft - (parentBorder * 2) : e.clientX - left + width)
        finallPoint.height = e.clientY > origin.y ? ((e.clientY > (top + height)) ? 0 : height + (top - e.clientY)) : height + (top - origin.y)
        rect.style.top = finallPoint.top + 'px'
        rect.style.width = finallPoint.width + 'px'
        rect.style.height = finallPoint.height + 'px'
      } else if (dragX === 2 && dragY === 1) { // 右中拉伸
        finallPoint.width = (e.clientX - left + width > dom.offsetWidth - rect.offsetLeft - (parentBorder * 2) ? dom.offsetWidth - rect.offsetLeft - (parentBorder * 2) : e.clientX - left + width)
        rect.style.width = finallPoint.width + 'px'
      }else if (dragX === 2 && dragY === 2) { // 右下角拉伸
        finallPoint.width = (e.clientX - left + width > dom.offsetWidth - rect.offsetLeft - (parentBorder * 2) ? dom.offsetWidth - rect.offsetLeft - (parentBorder * 2) : e.clientX - left + width)
        finallPoint.height = (e.clientY- top + height > dom.offsetHeight - rect.offsetTop - (parentBorder * 2) ? dom.offsetHeight - rect.offsetTop - (parentBorder * 2) : e.clientY- top + height)
        rect.style.width = finallPoint.width + 'px'
        rect.style.height = finallPoint.height + 'px'
      } else if (dragX === 1 && dragY === 2) { // 中下拉伸
        finallPoint.height = (e.clientY- top + height > dom.offsetHeight - rect.offsetTop - (parentBorder * 2) ? dom.offsetHeight - rect.offsetTop - (parentBorder * 2) : e.clientY- top + height)
        rect.style.height = finallPoint.height + 'px'
      } else if (dragX === 0 && dragY === 2) { // 左下角拉伸
        finallPoint.left = e.clientX > origin.x ? ((e.clientX > (left + width)) ? left + width - origin.x : e.clientX - origin.x) : 0
        finallPoint.width = e.clientX > origin.x ? ((e.clientX > (left + width)) ? 0 : width + (left - e.clientX)) : width + (left - origin.x)
        finallPoint.height = (e.clientY- top + height > dom.offsetHeight - rect.offsetTop - (parentBorder * 2) ? dom.offsetHeight - rect.offsetTop - (parentBorder * 2) : e.clientY- top + height)
        rect.style.left = finallPoint.left + 'px'
        rect.style.width = finallPoint.width + 'px'
        rect.style.height = finallPoint.height + 'px'
      } else if (dragX === 0 && dragY === 1) { // 左中拉伸
        finallPoint.left = e.clientX > origin.x ? ((e.clientX > (left + width)) ? left + width - origin.x : e.clientX - origin.x) : 0
        finallPoint.width = e.clientX > origin.x ? ((e.clientX > (left + width)) ? 0 : width + (left - e.clientX)) : width + (left - origin.x)
        rect.style.left = finallPoint.left + 'px'
        rect.style.width = finallPoint.width + 'px'
      }
      generatePoint()
    }
    document.onmouseup = e => {
      document.onmousemove = null
      document.onmouseup = null
      rect.style.cursor = 'move'
    }
  }
}
/**
 * mousedown逻辑处理
 */
const mousedownHandle = (e) => {
  let flag = 0 // 点击的是除边角以外的其他部分 拖动
  let startX = e.offsetX
  let startY = e.offsetY
  let width = e.target.offsetWidth
  let height = e.target.offsetHeight
  if (e.target !== rect) {
    flag = 1 // 点击的是边角 缩放
    const parent = e.target.offsetParent.getBoundingClientRect()
    const child = e.target.getBoundingClientRect()
    startX = child.x - parent.x
    startY = child.y - parent.y
    width = e.target.offsetParent.offsetWidth
    height = e.target.offsetParent.offsetHeight
  }
  const difference = 12 // 点击四边角12 px范围为拉伸,其他为拖动,这个值可以根据你需要的来调整
  let left = 0 // 0 => left, 1 => middle, 2 => right, -1 => 点击的位置不能被拖动
  let top = 0 // 0 => top, 1 => middle, 2 => bottom, -1 => 点击的位置不能被拖动
  if (startX < difference) { // 点击的位置为矩形左侧
    left = 0
  } else if (startX > width / 2 - difference && startX < width / 2 + difference) { // 点击的位置为矩形中间 width/2 - 6px ~ width/2 + 6px
    left = 1
  } else if (startX < width && startX > width - difference){ // 点击的位置为矩形右侧 width - 6px ~ width
    left = 2
  } else {
    left = -1
  }

  if (startY < difference) { // 点击的位置为矩形上侧
    top = 0
  } else if (startY > height / 2 - difference && startY < height / 2 + difference) { // 点击的位置为矩形中间 height/2 - 6px ~ height/2 + 6px
    top = 1
  } else if (startY < height && startY > height - difference){ // 点击的位置为矩形下侧 height - 6px ~ height
    top = 2
  } else {
    top = -1
  }
  if (left === -1 || top === -1 || (left === 1 && top === 1)) {
    return [-1, -1]
  }
  return [left, top] // 只会有八个位置能被准确返回,其余都是返回[-1, -1]
}

const clear = document.querySelector('#clear') // 清除截图
const startPaint = document.querySelector('#start-paint') // 开始绘制

const getCurrentColor = () => {
  return '#fa9120'
}
/** 生成最终坐标 */
const generatePoint = () => {
  const rectArgs = {
    left: parseInt(getComputedStyle(rect).left),
    top: parseInt(getComputedStyle(rect).top),
    width: parseInt(getComputedStyle(rect).width),
    height: parseInt(getComputedStyle(rect).height),
  }
  methods.generateImg(rectArgs)
}
/** 清除矩形框 */
export const clearRect = () => {
  rect.style.left = '-9999px'
  rect.style.top = 0
  rect.style.width = 0
  rect.style.height = 0
}

clear.onclick = e => {
  methods.clearCanvas()
  clearRect()
}
startPaint.onclick = e => {
  startMouse()
}

3、/script/main.js

import {
  clearRect
} from './rect.js';

// 编辑区dom
const control = document.querySelector('#control')
// 编辑区显示的图片dom
const controlImg = document.querySelector('#control img')
// 预览区dom
const display = document.querySelector('#display')
// 预览区显示的canvas dom
const canvas = document.querySelector('#display canvas')
const ctx = canvas.getContext('2d')
// 插入图片的dom
const insertImg = document.querySelector('#insert-img')
// 导出截图的dom
const exportClip = document.querySelector('#export-clip')
// 图片对象
let imgObj = null
// 最佳显示比例
let bestScale = 0
const methods = {
  /** ------ 图片上传模块 开始 ------ */
  doInput() {
    const inputObj = document.createElement('input');
    inputObj.addEventListener('change', this.readFile, false);
    inputObj.type = 'file';
    inputObj.accept = 'image/*';
    inputObj.click();
  },
  readFile() {
    const file = this.files[0]; // 获取input输入的图片
    if(!/image\/\w+/.test(file.type)){
        alert("请确保文件为图像类型");
        return false;
    } // 判断是否图片
    const reader = new FileReader();
    reader.readAsDataURL(file); // 转化成base64数据类型
    reader.onload = function(e){
      methods.drawToCanvas(this.result); // lve为当前实例
    }
  },
  drawToCanvas(imgData) {
    imgObj = new Image()
    controlImg.src = imgObj.src = imgData
    imgObj.onload = () => {
      bestScale = methods.calcBestScale(imgObj, control.offsetWidth, control.offsetHeight)
      // 图片按最佳比例展示
      controlImg.width = imgObj.width * bestScale
      controlImg.height = imgObj.height * bestScale
      // 外部盒子也按照最佳比例展示
      control.style.width = controlImg.width + 'px'
      control.style.height = controlImg.height + 'px'
    }
  },
  /** ------ 图片上传模块 结束 ------ */
  /**
   * 随机id
   */
  uuid() {
    let d = new Date().getTime();
    const uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
      const r = (d + Math.random() * 16) % 16 | 0;
      d = Math.floor(d / 16);
      return (c === 'x' ? r : (r & 0x3 | 0x8)).toString(16);
    });
    return uuid
  },
  /**
   * canvas转base64
   * @param {*} blob
   * @param {*} type
   * @param {*} name
   */
  blob2file(blob, type = 'png', name = '') {
    const fileName = name || this.uuid() + '.' + type
    const file = new File([blob], fileName, { type: blob.type, lastModified: Date.now() })
    return file
  },
  /**
   * 计算最佳的图片显示比例
   * @param {*} img
   * @param {*} deviceWidth
   * @param {*} deviceHeight
   * @returns 
   */
  calcBestScale(img, deviceWidth, deviceHeight) {
    return Math.min(deviceWidth / img.width, deviceHeight / img.height)
  },
  /**
   * 清除canvas
   */
  clearCanvas() {
    canvas && ctx.clearRect(0, 0, display.offsetWidth, display.offsetHeight)
  },
  /**
   * 生成图片
   * @param {*} src 
   */
  generateImg(rect) {
    if (!imgObj) return
    const {
      left,
      top,
      width,
      height
    } = rect
    const displayRect = {
      left: left / bestScale,
      top: top / bestScale,
      width: width / bestScale,
      height: height / bestScale
    }
    // 当截图矩形框宽度大于高度时,以预览区宽度为限制,高度按比例缩放
    if (displayRect.width >  displayRect.height) {
      canvas.width = display.offsetWidth
      canvas.height = display.offsetWidth * displayRect.height / displayRect.width
    // 当截图矩形框高度大于宽度时,以预览区高度为限制,宽度按比例缩放
    } else {
      canvas.height = display.offsetHeight
      canvas.width = display.offsetHeight * displayRect.width / displayRect.height
    }
    ctx.drawImage(imgObj, displayRect.left, displayRect.top, displayRect.width, displayRect.height, 0, 0, canvas.width, canvas.height)
  }
}
/** 点击插入图片触发逻辑 */
insertImg.addEventListener('click', () => {
  clearRect()
  methods.doInput()
})

/** 点击导出截图触发逻辑 */
exportClip.addEventListener('click', () => {
  if (canvas) {
    // 创建一个 a 标签,并设置 href 和 download 属性
    const el = document.createElement('a');
    // 设置 href 为图片经过 base64 编码后的字符串,默认为 png 格式
    el.href = canvas.toDataURL('image/png', 1.0);
    el.download = '截图.png';
    // 创建一个点击事件并对 a 标签进行触发
    const event = new MouseEvent('click');
    el.dispatchEvent(event);
  }
})

export {
  methods
}

4、/assets/rect.css

.rect{
  position: absolute;
  /* box-shadow: 0 0 0 1999px rgba(0, 0, 0, .4); */
  left: -9999px;
  top: 0;
  width: 0;
  height: 0;
  border: 1px solid #d79751;
  cursor: move;
  z-index: 1;
}
.rect > span{
  position: absolute;
  width: 4px;
  height: 4px;
  /* border-radius: 50%; */
  border: 1px solid #fa9120;
  background-color: #fa9120;
}
.rect .left-top{
  left: -3px;
  top: -3px;
  cursor: nwse-resize;
}
.rect .middle-top{
  left: 50%;
  top: -3px;
  transform: translateX(-50%);
  cursor: n-resize;
}
.rect .right-top{
  right: -3px;
  top: -3px;
  cursor: nesw-resize;
}
.rect .right-middle{
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  cursor: e-resize;
}
.rect .right-bottom{
  right: -3px;
  bottom: -3px;
  cursor: nwse-resize;
}
.rect .middle-bottom{
  left: 50%;
  bottom: -3px;
  transform: translateX(-50%);
  cursor: s-resize;
}
.rect .left-bottom{
  left: -3px;
  bottom: -3px;
  cursor: nesw-resize;
}
.rect .left-middle{
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
  cursor: w-resize;
}

5、/assets/main.css

body {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#root {
  width: 80%;
  height: 624px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.tool {
  padding: 0 10px;
  line-height: 24px;
  height: 24px;
  width: 100%;
}

.tool span {
  cursor: pointer;
}

.tool span:hover {
  color: #fa9120;
}

.container {
  width: 100%;
  height: calc(100% - 24px);
  position: relative;
  display: flex;
}

.area {
  width: 50%;
  max-width: 50%;
  height: 100%;
  border: 2px dashed #eee;
  border-radius: 8px;
  position: relative;
}

.area .img-box {
  position: absolute;
  left: 0;
  height: 0;
  z-index: -1;
  pointer-events: none;
}

.area img {
  pointer-events: none;
}

#control canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

6、/assets/reset.css(初始化样式表,这个可以你自行实现)

* {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
    margin: 0;
    padding: 0;
}

body,
button,
input,
select,
textarea {
    font: 12px/1.5tahoma, arial, \5b8b\4f53;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

address,
cite,
dfn,
em,
var {
    font-style: normal;
}

code,
kbd,
pre,
samp {
    font-family: couriernew, courier, monospace;
}

small {
    font-size: 12px;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

legend {
    color: #000;
}

fieldset,
img {
    border: 0;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/405920.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

Unity中URP实现水效果(水的深度)

文章目录 前言一、搭建预备场景1、新建一个面片&#xff0c;使其倾斜一个角度&#xff0c;来模拟水底和岸边的效果2、随便创建几个物体&#xff0c;作为与水面接触的物体3、再新建一个面片&#xff0c;作为水面 二、开始编写水体的Shader效果1、新建一个URP基础Shader2、把水体…

redis GEO 类型原理及命令详解

目录 前言 一、GeoHash 的编码方法 二、Redis 操作GEO类型 前言 我们有一个需求是用户搜索附近的店铺&#xff0c;就是所谓的位置信息服务&#xff08;Location-Based Service&#xff0c;LBS&#xff09;的应用。这样的相关服务我们每天都在接触&#xff0c;用滴滴打车&am…

2.23通过platform总线驱动框架编写LED灯的驱动,编写应用程序测试

驱动代码 #include <linux/init.h> #include <linux/module.h> #include <linux/of_gpio.h> #include <linux/gpio.h> #include <linux/platform_device.h> #include <linux/mod_devicetable.h>#define LED_ON _IOW(l, 1, int) #define L…

nginx的功能以及运用(编译、平滑升级、提高服务器设置、location alias 等)

nginx与apache的对比 nginx优点 nginx中INPUT OUTPUT模型 零拷贝技术 原理&#xff1a;减少内核空间和用户空间的拷贝次数&#xff0c;增加INPUT OUTPUT的效率 网络I/O 模型 同步&#xff0c;异步 &#xff1a; 消息反馈机制 阻塞和非阻塞 阻塞型I/O模型&#xff1a;不利于…

第3.3章:StarRocks数据导入——Stream Load

一、概述 Stream Load是StarRocks最为核心的导入方式&#xff0c;用户通过发送HTTP请求将本地文件或数据流导入至StarRocks中&#xff0c;其本身不依赖其他组件。 Stream Load支持csv和json两种数据文件格式&#xff0c;适用于数据文件数量较少且单个文件的大小不超过10GB 的场…

[yolov9]使用python部署yolov9的onnx模型

【框架地址】 https://github.com/WongKinYiu/yolov9 【yolov9简介】 在目标检测领域&#xff0c;YOLOv9 实现了一代更比一代强&#xff0c;利用新架构和方法让传统卷积在参数利用率方面胜过了深度卷积。 继 2023 年 1 月 正式发布一年多以后&#xff0c;YOLOv9 终于来了&a…

基于Java SSM框架实现高校失物招领管理平台系统项目【项目源码】

基于java的SSM框架实现高校失物招领管理平台系统演示 B/S结构 在B/S的结构中&#xff0c;学生可以在任何可以上网的地方访问和使用系统网站的功能&#xff0c;没有地域和时间等方面的限制&#xff0c;B/S结构是把程序完整放置到计算机网络的服务器上&#xff0c;通过计算机互联…

module ‘json‘ has no attribute ‘dumps‘

如果在使用Python的json模块时遇到AttributeError: module json has no attribute dumps错误&#xff0c;通常是因为在Python环境中json模块不支持dumps方法。这种情况可能是因为Python的json模块被重命名或修改过导致的。 解决方法可以尝试以下几种&#xff1a; 1.检查Pytho…

SpringBoot:自定义starter

点击查看&#xff1a;LearnSpringBoot08starter 点击查看&#xff1a;LearnSpringBoot08starterTest 点击查看更多的SpringBoot教程 一、主要流程 1. 先创建空的project 2. 打开空的project 结构 图选中model 点击 3. 创建 model&#xff08;Maven&#xff09;启动器 提…

【C语言】内存操作,内存函数篇---memcpy,memmove,memset和memcmp内存函数的使用和模拟实现【图文详解】

欢迎来CILMY23的博客喔&#xff0c;本篇为​【C语言】内存操作&#xff0c;内存函数篇---memcpy&#xff0c;memmove&#xff0c;memset和memcmp内存函数的使用和模拟实现【图文详解】&#xff0c;图文讲解四种内存函数&#xff0c;带大家更深刻理解C语言中内存函数的操作&…

Jmeter基础(3) 发起一次请求

目录 Jmeter 一次请求添加线程组添加HTTP请求添加监听器 Jmeter 一次请求 用Jmeter进行一次请求的过程&#xff0c;需要几个步骤呢&#xff1f; 1、添加线程组2、添加HTTP请求3、添加监听器&#xff0c;查看结果树 现在就打开jmeter看下如何创建一个请求吧 添加线程组 用来…

自定义股票池策略周报告---收益1.8,回撤0.7,提供实盘设置

综合交易模型已经交易了1个月了目前收益10&#xff0c;回测0.8&#xff0c;策略追求稳稳的幸福&#xff0c;细水流长&#xff0c;回测年化20&#xff0c;最大回撤8 链接自定义股票池策略周报告---收益1.8&#xff0c;回撤0.7&#xff0c;提供实盘设置 (qq.com) 实盘稳定运行2…

ctx.drawImage的canvas绘图不清晰解决方案,以及canvas高清导出

ctx.drawImage的canvas绘图不清晰 原因&#xff1a; 查资料是这么说的&#xff1a;canvas 绘图时&#xff0c;会从两个物理像素的中间位置开始绘制并向两边扩散 0.5 个物理像素。当设备像素比为 1 时&#xff0c;一个 1px 的线条实际上占据了两个物理像素&#xff08;每个像素…

Redis篇之Redis持久化的实现

持久化即把数据保存到可以永久保存的存储设备当中&#xff08;磁盘&#xff09;。因为Redis是基于内存存储数据的&#xff0c;一旦redis实例当即数据将会全部丢失&#xff0c;所以需要有某些机制将内存中的数据持久化到磁盘以备发生宕机时能够进行恢复&#xff0c;这一过程就称…

如何将建筑白模叠加到三维地球上?

​ 通过以下方法可以将建筑白模叠加到三维地球上。 方法/步骤 下载三维地图浏览器 http://www.geosaas.com/download/map3dbrowser.exe&#xff0c;安装完成后桌面上出现”三维地图浏览器“图标。 2、双击桌面图标打开”三维地图浏览器“ 3、点击“建筑白模”菜单&…

Ubuntu20.04开启/禁用ipv6

文章目录 Ubuntu20.04开启/禁用ipv61.ipv62. 开启ipv6step1. 编辑sysctl.confstep2. 编辑网络接口配置文件 3. 禁用ipv6&#xff08;sysctl&#xff09;4. 禁用ipv6&#xff08;grub&#xff09;附&#xff1a;总结linux网络配置 Ubuntu20.04开启/禁用ipv6 1.ipv6 IP 是互联网…

面试经典150题 -- 二叉树 (总结)

总的地址 : 面试经典 150 题 - 学习计划 - 力扣&#xff08;LeetCode&#xff09;全球极客挚爱的技术成长平台 104 . 二叉树的最大深度 104 . 二叉树的最大深度 递归 : 直接用递归访问 &#xff0c; 访问左孩子 和 右孩子 &#xff0c; 如果 存在 &#xff0c; 深度就1 &…

利用R语言进行典型相关分析实战

&#x1f349;CSDN小墨&晓末:https://blog.csdn.net/jd1813346972 个人介绍: 研一&#xff5c;统计学&#xff5c;干货分享          擅长Python、Matlab、R等主流编程软件          累计十余项国家级比赛奖项&#xff0c;参与研究经费10w、40w级横向 文…

幻兽帕鲁(Palworld 1.4.1)私有服务器搭建(docker版)

文章目录 说明客户端安装服务器部署1Panel安装和配置docker服务初始化设置设置开机自启动设置镜像加速 游戏服务端部署游戏服务端参数可视化配置 Palworld连接服务器问题总结 说明 服务器硬件要求&#xff1a;Linux系统/Window系统&#xff08;x86架构&#xff0c;armbian架构…

Linux设备模型(二) - kset/kobj/ktype APIs

一&#xff0c;kobject_init_and_add 1&#xff0c;kobject_init_and_add实现 /** * kobject_init_and_add() - Initialize a kobject structure and add it to * the kobject hierarchy. * kobj: pointer to the kobject to initialize * ktype: p…