上传后调整图片大小
我希望图像以 4 种不同的格式上传后调整大小。如果我将其大小调整为最适合(即纵横比),如果高度或宽度比其他图像太大,则某些图像会变得太小,如果我将其调整为固定大小,则图像会倾斜。那么调整图像大小的最佳方法是什么?我目前正在通过 imagemagik thumbnailImage() 执行此操作,但我认为这是一个普遍问题。谷歌或脸书等网站在做什么?在这种情况下最好的做法是什么
I want images to resize after upload in 4 different formats. If i resize it to best fit(i.e aspect ratio) some images come too small if height or width is too large than the other and if i resize it to fixed size then images get skewed. So what is the best way to resize a image. I am currently doing this using via imagemagik thumbnailImage() but i think it's a general problem. What are sites like google or facebook doing. what is the best thing to do in that case
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在上传图像时使用调整大小功能以不同尺寸调整图像大小。
例如:
同样,您可以将图像保存为不同的尺寸。
有关更多详细信息,您可以在这里找到:
http://sanjeevkumarjha.com .np/如何调整大小和裁剪图像/
You can use resize functionality for resize image in different size during upload image.
For example:
Similarly, you can save image in different size.
For more in detail you can find here:
http://sanjeevkumarjha.com.np/how-to-resize-and-crop-image/
您还可以使用 ImageWorkshop:http://phpimageworkshop.com/doc/17/resizing.html
您将得到一张尺寸为 200px/150px 且比例保持不变的调整后的图片!
You can also use ImageWorkshop: http://phpimageworkshop.com/doc/17/resizing.html
You will have a resized picture of 200px/150px with conserved proportion !