JPG批量裁剪生成方形缩略图

发布于 2024-10-20 09:27:15 字数 201 浏览 3 评论 0原文

我正在寻找一个用于裁剪图像文件的轻量级批处理工具。 由于长宽比可以是 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 技术交流群。

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

发布评论

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

评论(2

一影成城 2024-10-27 09:27:15

这个拳头创建了一个内存中的位图square,其大小适合原始的正方形。然后将其缩小到“thumbSize”。

string imagefolder = @"C:\Users\russ\Originals";
string thumbfolder = @"C:\Users\russ\Squares";
int thumbSize = 100;

foreach (string file in System.IO.Directory.GetFiles(imagefolder, "*.jpg"))
{
    using (Image original  = Bitmap.FromFile(file))
    {
        Size size = new Size(
            Math.Min(original.Width, original.Height),
            Math.Min(original.Width, original.Height)
        );
        int translateX = (size.Width - original.Width) / 2;
        int translateY = (size.Height - original.Height) / 2;

        using (Bitmap square = new Bitmap(size.Width, size.Height))
        {
            using (Graphics g = Graphics.FromImage(square))
            {
                 g.DrawImage(original, translateX, translateY, original.Width, original.Height);
            }

            using (Bitmap thumb = new Bitmap(thumbSize, thumbSize))
            {
                using (Graphics g2 = Graphics.FromImage(thumb))
                {
                    g2.DrawImage(square, 0, 0, thumbSize, thumbSize);
                }
                string thumbFile = Path.Combine(thumbfolder, Path.GetFileName(file));
                thumb.Save(thumbFile, ImageFormat.Jpeg);
            }

        }
    }
}

This fist creates an in-memory Bitmap square sized to the square that fits in the original. Then scales that down to thumbSize.

string imagefolder = @"C:\Users\russ\Originals";
string thumbfolder = @"C:\Users\russ\Squares";
int thumbSize = 100;

foreach (string file in System.IO.Directory.GetFiles(imagefolder, "*.jpg"))
{
    using (Image original  = Bitmap.FromFile(file))
    {
        Size size = new Size(
            Math.Min(original.Width, original.Height),
            Math.Min(original.Width, original.Height)
        );
        int translateX = (size.Width - original.Width) / 2;
        int translateY = (size.Height - original.Height) / 2;

        using (Bitmap square = new Bitmap(size.Width, size.Height))
        {
            using (Graphics g = Graphics.FromImage(square))
            {
                 g.DrawImage(original, translateX, translateY, original.Width, original.Height);
            }

            using (Bitmap thumb = new Bitmap(thumbSize, thumbSize))
            {
                using (Graphics g2 = Graphics.FromImage(thumb))
                {
                    g2.DrawImage(square, 0, 0, thumbSize, thumbSize);
                }
                string thumbFile = Path.Combine(thumbfolder, Path.GetFileName(file));
                thumb.Save(thumbFile, ImageFormat.Jpeg);
            }

        }
    }
}
等数载,海棠开 2024-10-27 09:27:15

看看 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.

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