Javascript动态图像大小调整

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Javascript动态图像大小调整相关的知识,希望对你有一定的参考价值。

  1. function ResizeImage(image, maxwidth, maxheight)
  2. {
  3. if (image.className == "Thumbnail")
  4. {
  5. w = image.width;
  6. h = image.height;
  7.  
  8. if( w == 0 || h == 0 )
  9. {
  10. image.width = maxwidth;
  11. image.height = maxheight;
  12. }
  13. else if (w > h)
  14. {
  15. if (w > maxwidth) image.width = maxwidth;
  16. }
  17. else
  18. {
  19. if (h > maxheight) image.height = maxheight;
  20. }
  21.  
  22. image.className = "ScaledThumbnail";
  23. }
  24. }

以上是关于Javascript动态图像大小调整的主要内容,如果未能解决你的问题,请参考以下文章

如何动态调整电子邮件客户端中的图像大小?

动态调整图像地图和图像的大小

使用 javascript/jquery 动态调整画布窗口的大小?

PHP图像动态调整大小与存储调整大小的图像

jQuery动态比例元素/图像调整大小

PHP图像动态调整大小和圆角图像