使用 MaxHeight 和 MaxWidth 约束按比例调整图像大小
在指定约束内调整图像大小时保持宽高比是各种应用程序中的常见要求。使用 System.Drawing.Image,您可以按比例调整图像大小,同时确保它们保持在最大宽度和高度限制内。
问题:
如果图像的宽度或高度超过指定的最大值,需要按比例调整大小。但是,调整大小后,确保宽度和高度均不超过最大限制至关重要。应调整图像大小,直到其适合最大尺寸,同时保持原始宽高比。
解决方案:
提供的 C# 代码演示了如何实现this:
public static void Test() { using (var image = Image.FromFile(@"c:\logo.png")) using (var newImage = ScaleImage(image, 300, 400)) { newImage.Save(@"c:\test.png", ImageFormat.Png); } } public static Image ScaleImage(Image image, int maxWidth, int maxHeight) { var ratioX = (double)maxWidth / image.Width; var ratioY = (double)maxHeight / image.Height; var ratio = Math.Min(ratioX, ratioY); var newWidth = (int)(image.Width * ratio); var newHeight = (int)(image.Height * ratio); var newImage = new Bitmap(newWidth, newHeight); using (var graphics = Graphics.FromImage(newImage)) graphics.DrawImage(image, 0, 0, newWidth, newHeight); return newImage; }
说明:
通过使用此技术,您可以调整图像大小,同时保持其纵横比,确保它们符合指定的最大尺寸。
以上是如何在 C# 中使用 MaxHeight 和 MaxWidth 约束按比例调整图像大小?的详细内容。更多信息请关注PHP中文网其他相关文章!