动态缩放 php 中的图像 jpg/png/gif
有没有一种简单的方法可以在php中动态缩放图像?
我想专门使用某种功能,我可以将它插入到我的 heml 中,当然,
<img src=image.php?img=boss.jpg&width=500>
它会将图像缩放到任何高度,将其限制为 500px 宽,
我感谢所有输入,谢谢。
编辑确实需要包含 jpg png 和 gif 文件类型
Is there a simple way of dynamically scaling an image in php?
Id like to specifically use some kind of function where i can insert it into my heml such as
<img src=image.php?img=boss.jpg&width=500>
and of course it would then scale the image to whatever height constrains it to 500px wide
i appreciate all input, thanks.
EDIT does need to include jpg png and gif file types
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用 GD 库并创建一个简单的脚本来根据需要缩放图像。 查看手册
You could use a GD library and create a simple script that would scale the image as you like. Check the manual
未测试
not tested
将其保存为 image.php,它应该像您希望的那样工作。
Save this as image.php, it should work like you want it to.
我更喜欢 WideImage 库,因为它真的非常容易使用。
就您而言,您所要做的就是:
并且它支持 jpeg、png、gif、gd,...
I prefer WideImage library, because it's really really easy to use.
In your case, everything you have to do is:
And it supports jpeg, png, gif, gd, ...