Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从数据库中获取图像 URL,例如“image01-v2-70-70.jpg”。
它已经缩放到 70-70,所以我把它当作更小的图像。
我想将此图像从默认的 70-70 缩放到 120-120
提前致谢
您可以在 php 扩展 php image magick 的帮助下做到这一点
header('Content-type: image/jpeg'); $image = new Imagick('image01-v2-70-70.jpg'); $image->adaptiveResizeImage(120,120); echo $image;
但强烈不建议这样做,因为您要从较小的分辨率变为较大的分辨率,这会使图像变得模糊。
一条建议尝试从原始图像复制120X120分辨率