Convert cmx to jpg
Contents
[
Hide
]
Using Aspose.Imaging for .NET, developers can convert CMX files to Jpgimages. This topic explains the approach to load existing CMX file and convert it to Jpg.
The following code snippet shows you how to convert CMX files to Jpg.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Aspose.Imaging; | |
using Aspose.Imaging.FileFormats.Tiff.Enums; | |
using Aspose.Imaging.ImageOptions; | |
using System; | |
using System.IO; | |
string templatesFolder = @"c:\Users\USER\Downloads\templates\"; | |
string dataDir = templatesFolder; | |
using (Aspose.Imaging.FileFormats.Cmx.CmxImage image = | |
(Aspose.Imaging.FileFormats.Cmx.CmxImage)Image.Load(dataDir + "template.cmx")) | |
{ | |
JpegOptions options = new JpegOptions(); | |
// Set rasterization options for fileformat | |
options.VectorRasterizationOptions = (Aspose.Imaging.ImageOptions.VectorRasterizationOptions)image.GetDefaultOptions(new object[] { Color.White, image.Width, image.Height }); | |
options.VectorRasterizationOptions.TextRenderingHint = TextRenderingHint.SingleBitPerPixel; | |
options.VectorRasterizationOptions.SmoothingMode = SmoothingMode.None; | |
image.Save(dataDir + "result.jpg", options); | |
} | |
File.Delete(dataDir + "result.jpg"); |