Specifies the level of compression that should be used when compressing the JPEG images in a PDF.
Syntax
'Declaration
Public Enum ImGearJpegCompressionLevel
Inherits System.Enum
public enum ImGearJpegCompressionLevel : System.Enum
__value public enum ImGearJpegCompressionLevel : public System.Enum
public enum class ImGearJpegCompressionLevel : public System.Enum
Members
Member | Value | Description |
LossyHigh | 3 |
Use a high amount of compression at the cost of some quality loss.
|
LossyLow | 1 |
Use the least amount of compression for maximum quality (default).
|
LossyMaximum | 4 |
Use the maximum amount of compression to decrease file size as much as possible.
|
LossyMedium | 2 |
Use a moderate amount of compression for a balance of compression and quality.
|
None | 0 |
Use no compression.
|
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
ImageGear.Formats.PDF.ImGearJpegCompressionLevel
See Also