在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.BlurType
和imageAttributes.BlurAmount
属性来改变锐化效果。