如何使用 PHP 调整图像大小?

发布于 2024-09-04 11:19:07 字数 196 浏览 3 评论 0原文

可能的重复:
将图片大小调整为固定大小

如何在 PHP 中调整图像大小?

Possible Duplicate:
Resize a picture to a fixed size

How to resize an image in PHP?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

孤城病女 2024-09-11 11:19:07

尝试GD 和图像函数,或者 - 如果您想要的不仅仅是那 - 像 ImageMagick 这样的库。

Try the GD and Image functions, or - if you want something more than just that - a library like ImageMagick.

面如桃花 2024-09-11 11:19:07

您可以使用 imagemagick,通过 php 中的 exec("convert ...") 调用它,将其复制到所需位置并访问它。

You may use imagemagick, call it via exec("convert ...") from php, copy it to the desired location and access it.

对不⑦ 2024-09-11 11:19:07

您也可以像我一样使用像繁荣lib.com 这样的轻量级框架,其中所有内容都很好地包装在类中 fImage,文档中的示例:

// Saving as a 60 quality JPEG
$image2 = new fImage('./example.gif');
$image2->resize(250, 0);
$image2->saveChanges('jpeg', 60);

它将与 GD 和 ImageMagick 一起使用

You can also do like I do and use a lightweight framework like flourishlib.com where everything is nicely wrapped in a class fImage, example from documentation:

// Saving as a 60 quality JPEG
$image2 = new fImage('./example.gif');
$image2->resize(250, 0);
$image2->saveChanges('jpeg', 60);

It will work with both GD and ImageMagick

巴黎夜雨 2024-09-11 11:19:07

我正在使用 Image_Transform PEAR 包。一个现成的东西在这项任务上非常可靠。

I'm using Image_Transform PEAR package for it. A ready-made thing that's pretty solid at this task.

多情癖 2024-09-11 11:19:07

您可以使用 codeigniter 框架,它为您提供了很多工具,包括图像处理。否则,主要思想是:

You may use codeigniter framework which provides you a lot of tools, including image manipulation. Otherwize, the main idea is to:

风尘浪孓 2024-09-11 11:19:07

这是我不久前编写的 图像调整大小脚本 的代码。它调整图像大小并保持纵横比。

该脚本使用核心 GD 库来调整大小。所以希望您的主机已经安装了它。

我将文档从瑞典语快速翻译成英语。所以它可能并不完美。

希望它有效!

Here is the code to a Image resize script which i wrote a while back. It resizes the image and keeps the aspect ratio.

This script uses the core GD library to resize. So hopefully your host already got it installed.

I did some fast translation on the documentation from swedish to english. So it might not be perfect.

Hope it works!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文