gpt4 book ai didi

perl - 使用 Perl 拉伸(stretch)、调整大小或缩略图

转载 作者:行者123 更新时间:2023-12-04 06:51:52 25 4
gpt4 key购买 nike

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

最佳答案

我推荐 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

关于perl - 使用 Perl 拉伸(stretch)、调整大小或缩略图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/486874/

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