gpt4 book ai didi

c# - 如何用C#绘制流畅的图像?

转载 作者:太空狗 更新时间:2023-10-29 19:52:17 25 4
gpt4 key购买 nike

我正在尝试在 C# 窗体上绘制图像(在 PictureBoxes 中,以及使用 Graphics.DrawImage()),并且正在寻找一种方法来绘制它们平滑。图像必须是支持透明度的格式,例如 PNG、GIF、SVG 和 WMF。 C# 不支持开箱即用的 SVG 文件,我还没有找到一个好的第三方库来使用(我找到了 SvgNet,但无法弄清楚)。

我需要绘制一个 WMF 文件,C# 可以通过 Image.FromFile() 函数来完成,但它没有消除锯齿。我想知道是否有任何方法可以解决这个问题?

最佳答案

之前的答案虽然是出于好意,但只是部分正确。

什么是正确的? PictureBox 不公开 InterpolationMode。

什么是错误的?

1) 虽然您可以在图片框的 Paint 事件中、在其父类中或通过派生类中的覆盖轻松设置该属性。 . .两种方法都有效,而且都一样简单。但是,除非设置了 SmoothingMode,否则 InterpolationMode 将被忽略。如果没有将 SmoothingMode 设置为 SmoothingMode.AnitAlias,您将不会获得任何抗锯齿功能。

2) 当您明确表示有兴趣使用 PictureBox 的功能时使用面板是错误的方向。如果不对这些属性进行显式编码,您将无法直接加载、保存或分配图像。 . . 为什么要重新发明轮子?通过派生 PictureBox,您可以免费获得所有这些。

由于我为您做了艰苦的工作,所以这个消息变得更好了,而且我花的时间比写这条消息要少。

我提供了两个版本,它们都派生自 PictureBox。 First 是一个简单的示例,它始终使用可能的最佳质量渲染。这也是最慢的渲染。 Second 是一个允许任何人通过派生类的属性设置各种渲染参数的类。设置后,这些将在 OnPaint 覆盖中使用。

public class HighQualitySmoothPictureBox : PictureBox
{
protected override void OnPaint(PaintEventArgs pe)
{
// This is the only line needed for anti-aliasing to be turned on.
pe.Graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;

// the next two lines of code (not comments) are needed to get the highest
// possible quiality of anti-aliasing. Remove them if you want the image to render faster.
pe.Graphics.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
pe.Graphics.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
// this line is needed for .net to draw the contents.
base.OnPaint(pe);
}
}

...

public class ConfigurableQualityPictureBox : PictureBox
{
// Note: the use of the "?" indicates the value type is "nullable."
// If the property is unset, it doesn't have a value, and therefore isn't
// used when the OnPaint method executes.
System.Drawing.Drawing2D.SmoothingMode? smoothingMode;
System.Drawing.Drawing2D.CompositingQuality? compositingQuality;
System.Drawing.Drawing2D.InterpolationMode? interpolationMode;

public System.Drawing.Drawing2D.SmoothingMode? SmoothingMode
{
get { return smoothingMode; }
set { smoothingMode = value; }
}

public System.Drawing.Drawing2D.CompositingQuality? CompositingQuality
{
get { return compositingQuality; }
set { compositingQuality = value; }
}

public System.Drawing.Drawing2D.InterpolationMode? InterpolationMode
{
get { return interpolationMode; }
set { interpolationMode = value; }
}

protected override void OnPaint(PaintEventArgs pe)
{
if (smoothingMode.HasValue)
pe.Graphics.SmoothingMode = smoothingMode.Value;
if (compositingQuality.HasValue)
pe.Graphics.CompositingQuality = compositingQuality.Value;
if (interpolationMode.HasValue)
pe.Graphics.InterpolationMode = interpolationMode.Value;

// this line is needed for .net to draw the contents.
base.OnPaint(pe);
}
}

关于c# - 如何用C#绘制流畅的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/566245/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com