如何将未知尺寸的图像调整为特定尺寸而不发生太大变形?
我想从用户那里获取图像并将其调整为特定大小,但问题是: 我不知道用户的图像大小,我必须将其重新调整到一定的大小,但变形是这里的负担。
我该如何解决这个问题?有没有相应的算法? 或者有最好的.net源代码吗? 此致。
I want to get an image from a user and re-size it to a specific size but the problem is :
I don't know about the user's image size and I have to re-size it to a certain size but deformation is burden over here.
how can I solve this problem? is there any algorithm according to that?
or is there any source code preferably in .net?
best regards.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
至于变形,您可以结合使用裁剪和调整大小。您的用户将帮助您进行裁剪。
我通过简单的 Google 搜索 代码项目 找到了这段代码 < code>.net 调整图像大小
As far as deformation, you could use a combination of cropping and resizing. Your user would help you with the cropping.
I found this code on Code Project with a simple Google search of
.net resize an image