Foxit PDF SDK
|
Public Types | |
enum | MonoImageCompressMode { MonoImageCompressMode.e_ImageCompressCCITT3 = 10001, MonoImageCompressMode.e_ImageCompressCCITT4 = 10002, MonoImageCompressMode.e_ImageCompressHigh = 10003, MonoImageCompressMode.e_ImageCompressjbig2 = 10004, MonoImageCompressMode.e_ImageCompressRetain = 10007, MonoImageCompressMode.e_ImageCompressRunLength = 10008 } |
Enumeration for compression mode used for monochrome image. More... | |
enum | MonoImageCompressQuality { MonoImageCompressQuality.e_ImageCompressQualityLossless = 1, MonoImageCompressQuality.e_ImageCompressQualityLossy = 2 } |
Enumeration for compression quality used for monochrome image. More... | |
enum | StretchMode { StretchMode.e_StretchDefault = -1, StretchMode.e_StretchOff = 0x00, StretchMode.e_StretchInterpol = 0x20, StretchMode.e_StretchDownsample = 0x04, StretchMode.e_StretchBicubic = 0x80, StretchMode.e_StretchNoSmooth = 0x100 } |
Enumeration for stretch mode. More... | |
Public Member Functions | |
MonoImageSettings () | |
Constructor. More... | |
MonoImageSettings (MonoImageSettings other) | |
Constructor, with another result information object. More... | |
bool | IsEmpty () |
Check whether current object is empty or not. More... | |
void | SetCompressionMode (MonoImageSettings.MonoImageCompressMode mode) |
Set compression mode used for optimizing monochrome images in a PDF document. More... | |
void | SetImageDPI (int dpi) |
Set the DPI value as the target compressed value for compressing monochrome images in a PDF document. More... | |
void | SetImageDPILimit (int dpi_limit) |
Set the lower limit DPI value for the monochrome image to decide if the image is to be compressed in a PDF document. More... | |
void | SetQuality (MonoImageSettings.MonoImageCompressQuality quality) |
Set compression quality, used for optimizing monochrome images in a PDF document. More... | |
void | SetStretchMode (MonoImageSettings.StretchMode mode) |
Set stretch mode used for optimizing monochrome images in a PDF document. More... | |
This class represents downsampling/recompression settings for monochrome images. This class object can be set to class OptimizerSettings and then be used to optimize a PDF document.
Enumeration for compression mode used for monochrome image.
Values of this enumeration should be used alone.
Enumeration for stretch mode.
Values of this enumeration should be used alone.
|
inline |
Constructor.
This constructor is to construct a monochrome image settings object with default setting options. User can also call "set" methods in this class to change these setting options. Please refer to comment of these "set" methods for more details about default values.
|
inline |
Constructor, with another result information object.
[in] | other | Another monochrome image settings object. |
|
inline |
Check whether current object is empty or not.
When the current object is empty, that means current object is useless.
|
inline |
Set compression mode used for optimizing monochrome images in a PDF document.
For a newly constructed object, if this function is not called to set option, that means to use foxit.addon.optimization.MonoImageSettings.MonoImageCompressMode.e_ImageCompressCCITT4 as the default value of this option.
[in] | mode | Image compression mode. Please refer to values starting from foxit.addon.optimization.MonoImageSettings.MonoImageCompressMode.e_ImageCompressHigh and this should be one of these values. |
|
inline |
Set the DPI value as the target compressed value for compressing monochrome images in a PDF document.
When an image can be compressed, the resolution of this image will be compressed to the DPI value set by current function.
For a newly constructed object, if this function is not called to set option, that means to use 250 as the default value of this option.
[in] | dpi | DPI value. If the images can be compressed, the resolution of these images will be compressed to this value. |
|
inline |
Set the lower limit DPI value for the monochrome image to decide if the image is to be compressed in a PDF document.
If the resolution of an image in the PDF document is above the lower limit DPI value, this image will be compressed to the target compressed DPI value which is set by function MonoImageSettings.SetImageDPI .
For a newly constructed object, if this function is not called to set option, that means a DPI value (which is 1.5 times of target compressed DPI value) will be used as the default value of this option.
[in] | dpi_limit | DPI value as the lower limit. This value should be a positive number. Suggested range: bigger than target compressed DPI value (set by function MonoImageSettings.SetImageDPI ) and the maximum value is 10 times of target compressed DPI value. If input value is not bigger than the target compressed DPI value, a DPI value which is one more than the target compressed DPI value will be used instead. If input value is bigger than the maximum value, the maximum value value will be used instead. |
|
inline |
Set compression quality, used for optimizing monochrome images in a PDF document.
For a newly constructed object, if this function is not called to set this option, that means to use foxit.addon.optimization.MonoImageSettings.MonoImageCompressQuality.e_ImageCompressQualityLossless as the default value of this option.
[in] | quality | Compression quality. Please refer to values starting from foxit.addon.optimization.MonoImageSettings.MonoImageCompressQuality.e_ImageCompressQualityLossless and this should be one of these values. |
|
inline |
Set stretch mode used for optimizing monochrome images in a PDF document.
For a newly constructed object, if this function is not called to set this option, that means to use foxit.addon.optimization.MonoImageSettings.StretchMode.e_StretchBicubic as the default value of this option.
[in] | mode | Stretch mode. Please refer to values starting from foxit.addon.optimization.ImageSettings.StretchMode.e_StretchOff and this should be one of these values. |