FileParams
Overview
FileParams is a class in Aspose.PDF FOSS for Java.
Embedded file parameters (ISO 32000-1:2008, §7.11.4, Table 46).
This class provides 7 methods for working with FileParams objects in Java programs.
Available methods include: FileParams, getCheckSum, getCreationDate, getModDate, getPdfDictionary, getSize.
All public members are accessible to any Java application after installing the Aspose.PDF FOSS for Java package.
Properties: checkSum, creationDate, modDate, pdfDictionary, size.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
size | long | Read | /Size — uncompressed file size in bytes. |
creationDate | String | Read | /CreationDate. |
modDate | String | Read | /ModDate. |
checkSum | String | Read | /CheckSum — MD5 digest. |
pdfDictionary | PdfDictionary | Read | Returns the underlying dictionary. |
Methods
| Signature | Description |
|---|---|
FileParams(dict: PdfDictionary) | Wraps an existing params dictionary. |
FileParams() | Creates new empty params. |
getSize() → long | /Size — uncompressed file size in bytes. |
getCreationDate() → String | /CreationDate. |
getModDate() → String | /ModDate. |
getCheckSum() → String | /CheckSum — MD5 digest. |
getPdfDictionary() → PdfDictionary | Returns the underlying dictionary. |