c#

c# drawimage怎样处理图像锐化

小樊
81
2024-11-24 20:04:06
栏目: 编程语言

在C#中,使用System.Drawing命名空间中的Graphics类可以轻松地实现图像锐化处理。以下是一个简单的示例,展示了如何使用Graphics.DrawImage方法对图像进行锐化处理:

using System;
using System.Drawing;
using System.Drawing.Imaging;

class Program
{
    static void Main()
    {
        // 加载图像
        using (Image originalImage = Image.FromFile("input.jpg"))
        {
            // 创建一个新的图像,用于存储锐化后的图像
            using (Bitmap sharpenedImage = new Bitmap(originalImage.Width, originalImage.Height))
            {
                // 创建一个Graphics对象,用于绘制锐化后的图像
                using (Graphics graphics = Graphics.FromImage(sharpenedImage))
                {
                    // 设置图形的质量
                    graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;

                    // 创建一个ImageAttributes对象,用于设置锐化效果
                    ImageAttributes imageAttributes = new ImageAttributes();
                    imageAttributes.模糊Type = BlurType.GaussianBlur;
                    imageAttributes.BlurAmount = 2; // 设置模糊量,值越大,锐化效果越明显

                    // 绘制原始图像到新的图像上,并应用锐化效果
                    graphics.DrawImage(originalImage, new Rectangle(0, 0, originalImage.Width, originalImage.Height),
                        imageAttributes);

                    // 保存锐化后的图像
                    sharpenedImage.Save("output.jpg", ImageFormat.Jpeg);
                }
            }
        }
    }
}

在这个示例中,我们首先加载了一个名为input.jpg的图像。然后,我们创建了一个新的Bitmap对象,用于存储锐化后的图像。接下来,我们使用Graphics类绘制原始图像到新的图像上,并应用锐化效果。最后,我们将锐化后的图像保存为output.jpg文件。

注意:这个示例使用了高斯模糊作为锐化方法。你可以通过调整imageAttributes.BlurTypeimageAttributes.BlurAmount属性来改变锐化效果。

0
看了该问题的人还看了