当前位置:  开发笔记 > 编程语言 > 正文

使用Perl拉伸,调整大小或缩放图像

如何解决《使用Perl拉伸,调整大小或缩放图像》经验,为你挑选了1个好方法。

如何使用Perl脚本拉伸或调整图像(任何格式)?



1> Ranguard..:

我推荐Image :: Imlib2 ...如果你可以在你的机器上安装imlib2

请参阅文档:Image :: Imlib2

use Image::Imlib2;

# load image from file
my $image = Image::Imlib2->load("in.png");

# get some info if you want
my $width  = $image->width;
my $height = $image->height;

# scale the image down to $x and $y
# you can set $x or $y to zero and it will maintain aspect ratio
my $image2 = $image->create_scaled_image($x,$y);

# save thumbnail to file
$image2->save("out.png");

你可能也对Image :: Imlib2 :: Thumbnail感兴趣,如果你不能安装imlib2看看Image :: Magick

推荐阅读
mobiledu2402852413
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有