gpt4 book ai didi

js通过canvas生成图片缩略图

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 36 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章js通过canvas生成图片缩略图由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

现今大部分的网络应用在上传图片的时候都会同时保存几种尺寸的图片,专业术语也就是生成缩略图,而对于生成缩略图一般做法是通过后端语言php等来生成,但是为了给服务器减压,我们或许可以从前端来着手,先生成好不同尺寸的缩略图,传给后端,而后端只需要将前端传过来的图片进行存储就好了.

使用Canvas我们可以轻松生成各种尺寸的图片,具体实现如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
function resizeImage(src,callback,w,h){
  var canvas = document.createElement( "canvas" ),
   ctx = canvas.getContext( "2d" ),
   im = new Image();
   w = w || 0,
   h = h || 0;
  im.onload = function (){
   //为传入缩放尺寸用原尺寸
   !w && (w = this .width);
   !h && (h = this .height);
   //以长宽最大值作为最终生成图片的依据
   if (w !== this .width || h !== this .height){
    var ratio;
    if (w>h){
     ratio = this .width / w;
     h = this .height / ratio;
    } else if (w===h){
     if ( this .width> this .height){
      ratio = this .width / w;
      h = this .height / ratio;
     } else {
      ratio = this .height / h;
      w = this .width / ratio;
     }
    } else {
     ratio = this .height / h;
     w = this .width / ratio;
    }
   }
   //以传入的长宽作为最终生成图片的尺寸
   if (w>h){
    var offset = (w - h) / 2;
    canvas.width = canvas.height = w;
    ctx.drawImage(im,0,offset,w,h);
   } else if (w<h){
    var offset = (h - w) / 2;
    canvas.width = canvas.height = h;
    ctx.drawImage(im,offset,0,w,h);
   } else {
    canvas.width = canvas.height = h;
    ctx.drawImage(im,0,0,w,h);
   }
   callback(canvas.toDataURL( "image/png" ));
  }
  im.src = src;
}

图片素材是拿的我们做的一个相框制作应用的截图,有兴趣的朋友可以联系我哦,大家一起讨论,一起玩.

原文链接:https://www.deanhan.cn/sh-html.html 。

最后此篇关于js通过canvas生成图片缩略图的文章就讲到这里了,如果你想了解更多关于js通过canvas生成图片缩略图的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com