PngOptions
内容
[
隐藏
]PngOptions class
png 文件格式创建选项.
public class PngOptions : ImageOptionsBase
构造函数
姓名 | 描述 |
---|---|
PngOptions() | 初始化PngOptions 类. |
PngOptions(PngOptions) | 初始化PngOptions 类. |
特性
姓名 | 描述 |
---|---|
BitDepth { get; set; } | 位深度。 |
BufferSizeHint { get; set; } | 获取或设置缓冲区大小提示,该提示定义了所有内部缓冲区的最大允许大小。 |
ColorType { get; set; } | 获取或设置颜色的类型。 |
CompressionLevel { get; set; } | png 图片压缩级别在 0-9 范围内,其中 9 为最大压缩,0 为存储模式。 |
Disposed { get; } | 获取一个值,该值指示此实例是否被释放。 |
FilterType { get; set; } | 获取或设置 png 文件保存过程中使用的过滤器类型。 |
FullFrame { get; set; } | 获取或设置一个值,指示是否[全帧]. |
MultiPageOptions { get; set; } | 多页选项 |
virtual Palette { get; set; } | 获取或设置调色板。 |
ProgressEventHandler { get; set; } | 获取或设置进度事件处理程序。 |
Progressive { get; set; } | 获取或设置一个值,该值指示是否PngOptions 是进步的。 |
virtual ResolutionSettings { get; set; } | 获取或设置分辨率设置。 |
Source { get; set; } | 获取或设置要在其中创建图像的源。 |
VectorRasterizationOptions { get; set; } | 获取或设置矢量光栅化选项。 |
override XmpData { get; set; } | 获取或设置 XMP 元数据容器。 |
方法
姓名 | 描述 |
---|---|
virtual Clone() | 克隆此实例。 |
Dispose() | 处理当前实例。 |
字段
姓名 | 描述 |
---|---|
const DefaultCompressionLevel | 默认压缩级别。 |
例子
此示例演示了将 SaveOptions 命名空间中的不同类用于导出目的。将 Gif 类型的图像加载到 Image 的实例中,然后导出为多种格式。
[C#]
string dir = "c:\\temp\\";
//在 Image 类的实例中加载现有图像(Gif 类型)
using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(dir + "sample.gif"))
{
//使用默认选项导出为BMP文件格式
image.Save(dir + "output.bmp", new Aspose.Imaging.ImageOptions.BmpOptions());
//使用默认选项导出为JPEG文件格式
image.Save(dir + "output.jpg", new Aspose.Imaging.ImageOptions.JpegOptions());
//使用默认选项导出为PNG文件格式
image.Save(dir + "output.png", new Aspose.Imaging.ImageOptions.PngOptions());
//使用默认选项导出为 TIFF 文件格式
image.Save(dir + "output.tif", new Aspose.Imaging.ImageOptions.TiffOptions(Aspose.Imaging.FileFormats.Tiff.Enums.TiffExpectedFormat.Default));
}
以下示例显示了如何在不引用特定图像类型的情况下以一般方式将多页矢量图像转换为 PNG 格式。
[C#]
string dir = "C:\\aspose.imaging\\net\\misc\\ImagingReleaseQATester\\Tests\\testdata\\2548";
string inputFilePath = System.IO.Path.Combine(dir, "Multipage.cdr");
string outputFilePath = System.IO.Path.Combine(dir, "Multipage.cdr.png");
Aspose.Imaging.ImageOptionsBase exportOptions = new Aspose.Imaging.ImageOptions.PngOptions();
using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Load(inputFilePath))
{
exportOptions.MultiPageOptions = null;
// 只导出前两页。事实上,只有一页会被光栅化,因为 PNG 不是多页格式。
Aspose.Imaging.IMultipageImage multipageImage = image as Aspose.Imaging.IMultipageImage;
if (multipageImage != null && (multipageImage.Pages != null && multipageImage.PageCount > 2))
{
exportOptions.MultiPageOptions = new Aspose.Imaging.ImageOptions.MultiPageOptions(new Aspose.Imaging.IntRange(0, 2));
}
if (image is Aspose.Imaging.VectorImage)
{
exportOptions.VectorRasterizationOptions = (Aspose.Imaging.ImageOptions.VectorRasterizationOptions)image.GetDefaultOptions(new object[] { Aspose.Imaging.Color.White, image.Width, image.Height });
exportOptions.VectorRasterizationOptions.TextRenderingHint = Aspose.Imaging.TextRenderingHint.SingleBitPerPixel;
exportOptions.VectorRasterizationOptions.SmoothingMode = Aspose.Imaging.SmoothingMode.None;
}
image.Save(outputFilePath, exportOptions);
}
此示例使用 Graphics 类在 Image 表面上创建原始形状。为了演示该操作,该示例创建一个 PNG 格式的新图像,并使用 Graphics 类公开的 Draw 方法在图像表面上绘制原始形状
[C#]
//创建一个FileStream实例
using (System.IO.FileStream stream = new System.IO.FileStream(@"C:\temp\output.png", System.IO.FileMode.Create))
{
//创建一个PngOptions实例并设置它的各种属性
Aspose.Imaging.ImageOptions.PngOptions pngOptions = new Aspose.Imaging.ImageOptions.PngOptions();
//设置PngOptions的来源
pngOptions.Source = new Aspose.Imaging.Sources.StreamSource(stream);
//创建一个Image实例
using (Aspose.Imaging.Image image = Aspose.Imaging.Image.Create(pngOptions, 500, 500))
{
//创建并初始化一个Graphics类的实例
Aspose.Imaging.Graphics graphics = new Aspose.Imaging.Graphics(image);
//清除图形表面
graphics.Clear(Aspose.Imaging.Color.Wheat);
//通过指定具有黑色颜色的Pen对象来绘制弧线,
//一个围绕圆弧的矩形,起始角和扫角
graphics.DrawArc(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Black, 2), new Aspose.Imaging.Rectangle(200, 200, 100, 200), 0, 300);
//通过指定具有蓝色和坐标点的 Pen 对象来绘制 Bezier。
graphics.DrawBezier(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Blue, 2), new Aspose.Imaging.Point(250, 100), new Aspose.Imaging.Point(300, 30), new Aspose.Imaging.Point(450, 100), new Aspose.Imaging.Point(235, 25));
//通过指定具有绿色的 Pen 对象和点数组来绘制曲线
graphics.DrawCurve(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Green, 2), new[] { new Aspose.Imaging.Point(100, 200), new Aspose.Imaging.Point(100, 350), new Aspose.Imaging.Point(200, 450) });
//使用 Pen 对象和周围的 Rectangle 绘制一个椭圆
graphics.DrawEllipse(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Yellow, 2), new Aspose.Imaging.Rectangle(300, 300, 100, 100));
//画一条线
graphics.DrawLine(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Violet, 2), new Aspose.Imaging.Point(100, 100), new Aspose.Imaging.Point(200, 200));
//画一个饼段
graphics.DrawPie(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Silver, 2), new Aspose.Imaging.Rectangle(new Aspose.Imaging.Point(200, 20), new Aspose.Imaging.Size(200, 200)), 0, 45);
//通过指定具有红色的 Pen 对象和点数组来绘制多边形
graphics.DrawPolygon(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Red, 2), new[] { new Aspose.Imaging.Point(20, 100), new Aspose.Imaging.Point(20, 200), new Aspose.Imaging.Point(220, 20) });
//画一个矩形
graphics.DrawRectangle(new Aspose.Imaging.Pen(Aspose.Imaging.Color.Orange, 2), new Aspose.Imaging.Rectangle(new Aspose.Imaging.Point(250, 250), new Aspose.Imaging.Size(100, 100)));
//创建一个SolidBrush对象并设置它的各种属性
Aspose.Imaging.Brushes.SolidBrush brush = new Aspose.Imaging.Brushes.SolidBrush();
brush.Color = Color.Purple;
brush.Opacity = 100;
//使用 SolidBrush 对象和字体在特定点绘制一个字符串
graphics.DrawString("This image is created by Aspose.Imaging API", new Aspose.Imaging.Font("Times New Roman", 16), brush, new Aspose.Imaging.PointF(50, 400));
// 保存所有更改。
image.Save();
}
}