←Select platform

CodecsXpsSaveOptions Class

Summary
Provides the options for saving a raster image as an Open XML Paper Specification (XPS) document.
Syntax
C#
C++/CLI
Java
Python
public class CodecsXpsSaveOptions  
public class CodecsXpsSaveOptions 
public ref class CodecsXpsSaveOptions  
class CodecsXpsSaveOptions: 
Remarks

The Open XML Paper Specification Format supports saving images with either PNG or JPEG Compression.

The following table shows the quality factor used when an image is saved with a particular format:

Format Property
RasterImageFormat.Xps CodecsXpsSaveOptions.PngQualityFactor
RasterImageFormat.XpsJpeg CodecsXpsSaveOptions.JpegQualityFactor
RasterImageFormat.XpsJpeg422 CodecsXpsSaveOptions.JpegQualityFactor
RasterImageFormat.XpsJpeg411 CodecsXpsSaveOptions.JpegQualityFactor
Example
C#
using Leadtools; 
using Leadtools.Codecs; 
 
using Leadtools.ImageProcessing.Core; 
 
public void CodecsXpsOptionsExample() 
{ 
   RasterCodecs codecs = new RasterCodecs(); 
 
   string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "test.xps"); 
   string pngDestFileName = Path.Combine(LEAD_VARS.ImagesDir, "PngCompressed.xps"); 
   string jpegDestFileName = Path.Combine(LEAD_VARS.ImagesDir, "JpegCompressed.xps"); 
 
   // Set the resolution for loading XPS files to 300 by 300 DPI (Dots per inch) 
   // CodecsXpsOptions & CodecsXpsLoadOptions reference 
   codecs.Options.RasterizeDocument.Load.XResolution = 300; 
   codecs.Options.RasterizeDocument.Load.YResolution = 300; 
 
   // Load the source file 
   RasterImage image = codecs.Load(srcFileName); 
 
   // Save this file as XPS with PNG compression and quality factor of 9 (highest compression) 
   // CodecsXpsSaveOptions reference 
   codecs.Options.Xps.Save.PngQualityFactor = 9; 
   codecs.Save(image, pngDestFileName, RasterImageFormat.Xps, 24); 
 
   // Save this file as XPS with JPEG 422 compression and quality factor of 255 (highest compression) 
   codecs.Options.Xps.Save.JpegQualityFactor = 255; 
   codecs.Save(image, jpegDestFileName, RasterImageFormat.Xps, 24); 
 
   // Clean up 
   image.Dispose(); 
   codecs.Dispose(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.5.5
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Codecs Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.