Этот кулак создает растровое изображение в памяти 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);
}
}
}
}