JPG批量裁剪生成方形缩略图
我正在寻找一个用于裁剪图像文件的轻量级批处理工具。 由于长宽比可以是 3:4 或 4:3,因此要围绕中心进行裁剪 这意味着对于较高的图像,将在顶部和底部进行裁剪以生成方形图像。 对于较宽的图像,将在左侧和右侧进行裁剪以生成方形图像。
有人用过这样的工具吗?我正在使用 .NET 4.0 和 C#
我不是在寻找 ImageMagick 或 nConvert。
I am looking for a light weight batch tool for cropping image files.
The cropping to be done around the center since the aspect ration can be 3:4 or 4:3
This means for taller images, crop will happen at top and at bottom to generate the square image.
For wider images, crop will happen at the left and right to generate the square image.
Anyone has used such a tool? I am using .NET 4.0 and C#
I am not looking for ImageMagick or nConvert.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个拳头创建了一个内存中的位图
square
,其大小适合原始的正方形。然后将其缩小到“thumbSize”。This fist creates an in-memory Bitmap
square
sized to the square that fits in the original. Then scales that down tothumbSize
.看看 ImageMagick.NET。 Imagemagick 是一组用于 Linux 的命令行工具和库,似乎有人已将其移植到 windows/.NET 上。我从未使用过裁剪功能,但它肯定能满足您的需要。更多信息和用法似乎位于此处,该项目的旧页面。
Take a look at ImageMagick.NET. Imagemagick is a set of command-line tools and libraries for linux, and seems someone has ported it to windows/.NET. I've never used the crop functionality, but sure it does what you need. More info and usage seems to be here, the old page of the project.