Encode & Decode
Methods | ||
---|---|---|
ClearTiffCustomTag() | ConvertToBase64() | ConvertToBlob() |
SetTiffCustomTag() |
Properties | |
---|---|
IfOpenImageWithGDIPlus | IfTiffMultiPage |
JPEGQuality | TIFFCompressionType |
Deprecated Properties | ||
---|---|---|
PDFAuthor | PDFCompressionType | PDFCreationDate |
PDFCreator | PDFKeywords | PDFModifiedDate |
PDFProducer | PDFSubject | PDFTitle |
PDFVersion |
Methods
ClearTiffCustomTag() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Clears the content of all custom tiff tags. | |||||||||||
Syntax | .ClearTiffCustomTag() | ||||||||||
Parameters |
None
|
||||||||||
Return value | None |
||||||||||
Availability |
|
ConvertToBase64() | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Converts the images of specified indices in buffer to a base64 string. | |||||||||||||
Syntax | .ConvertToBase64(indices, enumImageType, asyncSuccessFunc, asyncFailureFunc); | ||||||||||||
Parameters |
number[] indices : specifies the indices of images in buffer. The index is 0-based. If multiple indices are specifed, then the result image type should be either IT_TIF or IT_PDF EnumDWT_ImageType enumImageType : specifies the format.
OnSuccess function asyncSuccessFunc : callback function triggered when the file is converted successfully.OnFailure function asyncFailureFunc : callback function triggered when the file fails to be converted.
|
||||||||||||
Return value | Base64Result is returned in the callback asyncSuccessFunc() Methods available in Base64Result object
The result string returned from getData is the pure base64 string with no extra info. For example, "/9j/4AAQSkZJRgABA..." To use the string in most circumstances, you need to add extra info like data:image/png;base64,"/9j/4AAQSkZJRgABA..." Because this method is async only, the returned value doesn't mean if the convert succeeds or not. When conversion fails, check ErrorCode or ErrorString for error information. |
||||||||||||
Example |
|
||||||||||||
Availability |
|
ConvertToBlob() | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Converts the images of specified indices in buffer to a blob. | |||||||||||||
Syntax | .ConvertToBlob(indices, enumImageType, asyncSuccessFunc, asyncFailureFunc); | ||||||||||||
Parameters |
number[] indices : specifies the indices of images in buffer. The index is 0-based. EnumDWT_ImageType enumImageType : specifies the format.
OnSuccess function asyncSuccessFunc : callback function triggered when the file is converted successfully.OnFailure function asyncFailureFunc : callback function triggered when the file fails to be converted.
|
||||||||||||
Return value | Blob is returned in the callback asyncSuccessFunc() Because this method is asynchronous, whether there is a returned value doesn't mean the success/failure of the operation. When the conversion fails, check ErrorCode or ErrorString for error information. |
||||||||||||
Example |
|
||||||||||||
Availability |
|
SetTiffCustomTag() | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Sets a custom tiff tag (up to 32 tags). The string to be set in a tag can be base64 encoded. | |||||||||||
Syntax | .SetTiffCustomTag(tagIdentifier, content, UseBase64Encoding); | ||||||||||
Parameters |
number tagIdentifier : specifies the identify number of custom tag in the tiff image.string content : the string to be set for this tag. The string will be written to the .tiff file when you save/upload it. If the string is base64 encoded, it'll be decoded when creating the TIFF file.Boolean UseBase64Encoding : specifies whether the content is base64 encoded. |
||||||||||
Return value | boolean |
||||||||||
Example |
|
||||||||||
Availability |
|
Properties
IfOpenImageWithGDIPlus | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets whether to use GDI+ library to decode images when loading them. | |||||||||||
Type | boolean |
||||||||||
Accessors | Get Set |
||||||||||
Usage notes | Windows GDI+ is a class-based API for C/C++ programmers. It enables applications to use graphics and formatted text on both the video display and the printer. Applications based on the Microsoft Win32 API do not access graphics hardware directly. Instead, GDI+ interacts with device drivers on behalf of applications. GDI+ is also supported by Microsoft Win64.
With GDI+, you can load some images which are not supported otherwise. However, please note that GDI+ library might be different on different OS. So an image might load on Win 7 but not Win XP. |
||||||||||
Availability |
|
IfTiffMultiPage | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Return or sets whether it's allowed to save many images as one TIFF file. | |||||||||||
Type | boolean |
||||||||||
Accessors | Get Set |
||||||||||
Usage notes | When you save a new image in the same name of an existing TIFF file
|
||||||||||
Availability |
|
JPEGQuality | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets the quality of JPEG files or JPEG-encoded PDF files. | |||||||||||
Type | number |
||||||||||
Accessors | Get Set |
||||||||||
Usage notes | The default value of JPEGQuality property is 80. The valid range is 0-100. The higher the JPEGQuality property, the better the quality and the bigger the size of the file. |
||||||||||
Availability |
|
TIFFCompressionType | |||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets the compression type for TIFF files. | |||||||||||||||||||||||||||||||||||
Type | number |
||||||||||||||||||||||||||||||||||
Accessors | Get Set |
||||||||||||||||||||||||||||||||||
Availability |
|
||||||||||||||||||||||||||||||||||
Usage notes |
TIFF_AUTO (0) , 1-bit images will be compressed in TIFF_T6 (4) while images with other bit depth will be compressed in TIFF_LZW (5) .When set to TIFF_JPEG (7) , 1-bit images will be compressed in TIFF_T6 (4) , color images or grey images (8-bit or higher) in TIFF_JPEG (7) standard, and other images by TIFF_LZW (5) .TIFF_T4 (3) and TIFF_FAX3 (3) are two names for the same compression type. So are TIFF_T6 (4) and TIFF_FAX4 (4) When TIFF_JPEG (7) is used, you can use JPEGQuality to further reduce the size of the TIFF file.
|
PDFAuthor | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets the name of the author that creates the PDF document. | |||||||||||
Type | string |
||||||||||
Accessors | Get Set |
||||||||||
Availability |
|
PDFCompressionType | |||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets the compression type for PDF files. | |||||||||||||||||||||||||||||
Type | string |
||||||||||||||||||||||||||||
Accessors | Get Set |
||||||||||||||||||||||||||||
Availability |
|
||||||||||||||||||||||||||||
Usage notes |
|
PDFCreationDate | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets the date when the PDF document is created. | |||||||||||
Type | string |
||||||||||
Accessors | Get Set |
||||||||||
Usage notes | The default value is current date. From version 15.0, the value string needs to start with "D:". | ||||||||||
Availability |
|
PDFCreator | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets the name of the application that created the original document (used when the PDF document is converted from another form); | |||||||||||
Type | string |
||||||||||
Accessors | Get Set |
||||||||||
Availability |
|
PDFKeywords | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets the keywords associated with the PDF document. | |||||||||||
Type | string |
||||||||||
Accessors | Get Set |
||||||||||
Availability |
|
PDFModifiedDate | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets the date when the PDF document is last modified. | |||||||||||
Type | string |
||||||||||
Accessors | Get Set |
||||||||||
Usage notes | The default value is current date. From version 15.0, the value string needs to start with "D:". | ||||||||||
Availability |
|
PDFProducer | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets the name of the application that generated the PDF document. | |||||||||||
Type | string |
||||||||||
Accessors | Get Set |
||||||||||
Availability |
|
PDFSubject | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets the subject of the PDF document. | |||||||||||
Type | string |
||||||||||
Accessors | Get Set |
||||||||||
Availability |
|
PDFTitle | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets the title of the PDF document. | |||||||||||
Type | string |
||||||||||
Accessors | Get Set |
||||||||||
Availability |
|
PDFVersion | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns or sets the version number for PDF files. | |||||||||||
Type | string |
||||||||||
Accessors | Get Set |
||||||||||
Availability |
|