Controls whether to adjust for differences in black points when converting colors between color spaces. If enabled the full dynamic range of the source space is mapped into the full dynamic range of the destination space. If disabled, the dynamic range of the source space is simulated in the destination space (which can result in blocked or gray shadows) This option is ignored if the rendering intent for the transformation is AC_AbsColorimetric. Default is 0 (zero).
-
-
AC_Option_Dither8=FOUR_CHAR_CODE('dth8')
-
Dither transformations to 8 bit color spaces. This may be ignored by optimized transforms. This option is used by AC_ApplyTransform. Default is 0 (zero).
-
-
AC_OptionCode_MaxEnum=0xFFFFFFFFL
-
-
-
-
Used By
-
-
-
-
FontRescanFlags
-
-
Header: DLExtrasExpT.h:73
-
-
-
Description
-
-
flags for rescanning font directories for additional fonts after Library initialization.
-
-
-
Enum Constants
-
-
FontRescan_Files=1
-
This will rescan just the fields defined in dirList, plus those added with PDFLAddFontDirectories.
-
-
FontRescan_System=2
-
This will rescan the system directories.
-
-
FontRescan_All=3
-
This, or an "or" of the previous two, will rescan both.
-
-
-
Used By
-
-
-
-
-
-
General Functions
-
-
ACGetOption
-
-
Header: DLExtrasProcs.h:129
-
-
-
Description
-
-
Returns the current value for the given AC_OptionCode. This call controls the behavior of colorspace conversions and manipulations carried out via AC-layer calls; it does not impact other Adobe PDF Library color behaviors.
AC_Option_BlackPointCompensation indicates whether the Acrobat Color Engine will carry out black point compensation when converting between colorspaces with different black points.
Sets the current value for the option specified by the supplied AC_OptionCode. This call controls the behavior of colorspace conversions and manipulations carried out via AC-layer calls; it does not impact other Adobe PDF Library color behaviors.
This call allows Adobe PDF Library to rescan for fonts without re-initializing. This will allow an operating Library process to detect and update new font directories and resources after startup, without requiring a restart and re-initialization.
-
This will add one or more directories, and the fonts within them, to the set of all directories containing fonts (those specified in the DirList string arrays of resource locations).
-
-
-
This call should be followed by a call to PDFLRescanFontDirectories after all new font directories have been loaded.
Warm reinitialization of the Adobe PDF Library. Call this method if you closed all documents and other PD/PDE/Cos objects. Releases memory used for cached data.
This call allows Adobe PDF Library to rescan for fonts without re-initializing. This will allow an operating Library process to detect and update new font directories and resources after startup, without requiring a restart and re-initialization.
-
This call can, depending on flag settings, force a rescan of font resource areas defined in your dirList array, a rescan of those residing in the System folder, or both. To add new font resources to your dirList array, use the PDFLAddFontDirectories call.
-
-
-
\ No newline at end of file
diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/pdfllayer_PDFontDownloadContext.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/pdfllayer_PDFontDownloadContext.html
deleted file mode 100644
index 1da3f6bb..00000000
--- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/pdfllayer_PDFontDownloadContext.html
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
-
-
-
-
-PDFL Library Layer: PDFontDownloadContext
-
-
-
-
-
-
-
-
-
-
-
-
PDFontDownloadContext Functions
-
-
PDFontDownloadContextCreate
-
-
Header: PDFLProcs.h:267
-
-
-
Description
-
-
Creates a font download context object. This object keeps track of the fonts downloaded during a print job and whether substitution fonts have already been downloaded. It also tracks the font download parameters, such as binaryOK and 'emitTrueTypeasType42'. It is meant for use in the PDFontStreamPS() method.
-
-
-
\ No newline at end of file
diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/pdlayer_PDPageLabel.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/pdlayer_PDPageLabel.html
deleted file mode 100644
index 161553a9..00000000
--- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/pdlayer_PDPageLabel.html
+++ /dev/null
@@ -1,476 +0,0 @@
-
-
-
-
-
-
-
-
-PD Layer: PDPageLabel
-
-
-
-
-
-
-
-
-
-
-
-
PDPageLabel Typedefs
-
-
PDPageLabel
-
-
Header: PDExpT.h:5548
-
-
-
Description
-
-
A label used to describe a page. This is used to allow for non-sequential page numbering or the addition of arbitrary labels for a page (such as the inclusion of Roman numerals at the beginning of a book). A PDPageLabel specifies the numbering style to use (for example, upper-case or lower-case Roman, decimal, and so on), the starting number for the first page, and an arbitrary prefix to be preappended to each number (for example, "A-" is used to generate "A-1", "A-2", "A-3", and so on).
Compares two page labels to see if they are equivalent. Two labels are equivalent if they have the same style, starting number (the numeric value of the first page associated with the label), and prefix strings which are the same byte-for-byte.
(Filled by the method) The text object containing the prefix string. The client must pass a valid ASText object title. The routine does not allocate it.
The page label for the page whose starting number is desired.
-
-
-
Returns
-
-
The starting number of the page label; that is, the numeric value of the first page associated with the label. It returns 1 if the page label is not valid or unknown.
An ASAtom for the label style. If no style is specified, it returns ASAtomFromString("None").
-
-
PDPageLabelIsValid
-
-
Header: PDProcs.h:7140
-
-
-
Description
-
-
Determines whether a page label is valid.
-
A page label is valid if its values correspond to the specification for page label dictionaries. See the description of Page labels in the ISO 32000-1:2008, Document Management-Portable Document Format-Part 1: PDF 1.7, section 12.4.2, page 374.
-
-
-
You can find this document on the web store of the International Standards Organization (ISO).
-
It raises an exception if storage is exhausted or file access fails.
The numbering system to use for the numeric portion of each label in this range of pages. The possible values are D for decimal numbers, R for upper-case Roman numbers, r for lower-case Roman numbers, A for upper-case alphabetic numbers, or a for lower-case alphabetic numbers. If it is None, the labels for this range will not have a numeric portion. None is specified by providing ASAtomFromString("None") as the style parameter.
-
-
prefix
-
A string to prefix to the numeric portion of the page label. It may be a NULL string.
-
-
prefixLen
-
The length in bytes of the prefix string.
-
-
startAt
-
The value to use when generating the numeric portion of the first label in this range; it must be greater than or equal to 1.
The numbering system to use for the numeric portion of each label in this range of pages. The possible values are:
-
-
Value
-
Description
-
-
D
-
Decimal numbers.
-
-
R
-
Upper-case Roman numbers.
-
-
r
-
Lower-case Roman numbers.
-
-
A
-
Upper-case alphabetic numbers.
-
-
a
-
Lower-case alphabetic numbers.
-
-
-
-
If it is None, the labels for this range will not have a numeric portion. None is specified by providing ASAtomFromString("None") as the style parameter.
-
-
-
prefix
-
The text object containing the string to prefix to the numeric portion of the page label.
-
-
startAt
-
The value to use when generating the numeric portion of the first label in this range; it must be greater than or equal to 1.
is raised if the base pages object is missing or invalid.
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/pdlayer_PDWordFinder.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/pdlayer_PDWordFinder.html
deleted file mode 100644
index 879a7113..00000000
--- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/pdlayer_PDWordFinder.html
+++ /dev/null
@@ -1,520 +0,0 @@
-
-
-
-
-
-
-
-
-PD Layer: PDWordFinder
-
-
-
-
-
-
-
-
-
-
-
-
PDWordFinder Definitions
-
-
WF_LATEST_VERSION
-
-
Header: PDExpT.h:3639
-
-
-
Description
-
-
Used to obtain the latest available version.
-
-
-
Syntax
-
-#define WF_LATEST_VERSION0
-
-
WF_VERSION_2
-
-
Header: PDExpT.h:3643
-
-
-
Description
-
-
The version used for Acrobat 3.x, 4.x.
-
-
-
Syntax
-
-#define WF_VERSION_22
-
-
WF_VERSION_3
-
-
Header: PDExpT.h:3647
-
-
-
Description
-
-
For Acrobat 5.0 without accessibility enabled.
-
-
-
Syntax
-
-#define WF_VERSION_33
-
-
WF_VERSION_4
-
-
Header: PDExpT.h:3651
-
-
-
Description
-
-
For Acrobat 5.0 with accessibility enabled.
-
-
-
Syntax
-
-#define WF_VERSION_44
-
-
-
-
PDWordFinder Functions
-
-
PDWordFinderAcquireVisibleWordList
-
-
Header: PDProcs.h:10683
-
-
-
Description
-
-
Finds all words on the specified page that are visible in the given optional-content context and returns one or more tables containing the words. One table contains the words sorted in the order in which they appear in the PDF file, while the other contains the words sorted by their x- and y-coordinates on the page.
-
The list contains only words that are visible in the given context. If the word states change in the given context, the word list will have to be released and re-acquired to reflect the changed set of visible words.
-
-
-
There can be only one word list in existence at a time; clients must release the previous word list, using PDWordFinderReleaseWordList(), before creating a new one.
-
-
-
Use PDWordFinderEnumWords() instead of this method if you wish to find one word at a time instead of obtaining a table containing all visible words on a page.
-
-
-
This procedure is intended to replace the call to PDWordFinderAcquireWordList() in most cases where you want to work only with the content that is visible on screen (such as a text selection). Change this call to update an application to work with the Optional Content feature.
The page number for which words are found. First page is 0, not 1 as designated in Acrobat.
-
-
ocContext
-
The context within which the words are in a visible state. NULL is equivalent to passing PDDocGetOCContext(pdDoc).
-
-
wInfoP
-
(Filled by the method) A user-supplied PDWord variable. Acrobat will fill this in to point to an Acrobat-allocated array of PDWord objects, which should never be accessed directly.
-
Access the acquired list through PDWordFinderGetNthWord(). The words are ordered in PDF order, which is the order in which they appear in the PDF file's data. This is often, but not always, the order in which a person would read the words. Use PDWordFinderGetNthWord to traverse this array; you cannot access this array directly. This array is always filled, regardless of the flags used in the call to PDDocCreateWordFinder() or PDDocCreateWordFinderUCS().
-
-
-
xySortTable
-
(Filled by the method) Acrobat fills in this user-supplied pointer to a pointer with the location of an Acrobat-allocated array of PDWords, sorted in x-y order, meaning that all words on the first line, from left to right, followed by all words on the next line. This array is only filled if the WXE_XY_SORT flag was set in the call to PDDocCreateWordFinder() or PDDocCreateWordFinderUCS(). PDWordFinderReleaseWordList() must be called to release allocated memory for this return or there will be a memory leak. As long as this parameter is non- NULL, the array is always filled regardless of the value of the rdFlags parameter in PDDocCreateWordFinder().
Finds all words on the specified page and returns one or more tables containing the words. One table contains the words sorted in the order in which they appear in the PDF file, while the other contains the words sorted by their x- and y-coordinates on the page.
-
Only words within or partially within the page's crop box (see PDPageGetCropBox()) are enumerated. Words outside the crop box are skipped.
-
-
-
There can be only one word list in existence at a time; clients must release the previous word list, using PDWordFinderReleaseWordList(), before creating a new one.
-
-
-
Use PDWordFinderEnumWords() instead of this method, if you wish to find one word at a time instead of obtaining a table containing all words on a page.
The page number for which words are found. The first page is 0, not 1 as designated in Acrobat.
-
-
wInfoP
-
(Filled by the method) A user-supplied PDWord variable. Acrobat will fill this in to point to an Acrobat-allocated array of PDWord objects, which should never be accessed directly.
-
Access the acquired list through PDWordFinderGetNthWord(). The words are ordered in PDF order, which is the order in which they appear in the PDF file's data. This is often, but not always, the order in which a person would read the words. Use PDWordFinderGetNthWord() to traverse this array; you cannot access this array directly. This array is always filled, regardless of the flags used in the call to PDDocCreateWordFinder() or PDDocCreateWordFinderUCS().
-
-
-
xySortTable
-
(Filled by the method) Acrobat fills in this user-supplied pointer to a pointer with the location of an Acrobat-allocated array of PDWords, sorted in x-y order, meaning that all words on the first line, from left to right, are followed by all words on the next line. This array is only filled if the WXE_XY_SORT flag was set in the call to PDDocCreateWordFinder() or PDDocCreateWordFinderUCS(). PDWordFinderReleaseWordList() must be called to release allocated memory for this return or there will be a memory leak. As long as this parameter is non- NULL, the array is always filled regardless of the value of the rdFlags parameter in PDDocCreateWordFinder().
Extracts visible words, one at a time, from the specified page or the entire document. It calls a user-supplied procedure once for each word found. If you wish to extract all text from a page at once, use PDWordFinderAcquireWordList() instead of this method.
-
Only words that are visible in the given optional-content context are enumerated.
Extracts words, one at a time, from the specified page or the entire document. It calls a user-supplied procedure once for each word found. If you wish to extract all text from a page at once, use PDWordFinderAcquireWordList() instead of this method.
-
Only words within or partially within the page's crop box (see PDPageGetCropBox()) are enumerated. Words outside the crop box are skipped.
Constructs a PDWord list from a Unicode string, and calls a user-supplied procedure once for each word found.
-
The words extracted by this method do not have quads, text style, or text selection information. The character offset is calculated from the beginning of the input string, and is increased by 2 on every 16 bits of data (the character offset of a character in a PDWord is the byte offset of the character in the source Unicode string).
The character offset value of the first character in the input Unicode string. This value is added to the word character offsets, and is used to maintain contiguous word character offsets when multiple strings (and multiple calls to this method) are combined into one word list.
-
-
-
-
\ No newline at end of file
diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/pdslayer_PDSMCRef.html b/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/pdslayer_PDSMCRef.html
deleted file mode 100644
index ace21247..00000000
--- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/pdslayer_PDSMCRef.html
+++ /dev/null
@@ -1,112 +0,0 @@
-
-
-
-
-
-
-
-
-PDSEdit Layer: PDSMCRef
-
-
-
-
-
-
-
-
-
-
-
-
PDSMCRef Typedefs
-
-
PDSMCRef
-
-
Header: PDSExpT.h:147
-
-
-
Syntax
-
-typedefPDSMCRefRec*PDSMCRef;
-
-
PDSMCRef
-
-
Header: PDSExpT.h:151
-
-
-
Syntax
-
-typedefstruct_t_PDSMCRef*PDSMCRef;
-
-
Returned From
-
-
-
-
Used By
-
-
-
-
-
-
PDSMCRef Functions
-
-
PDSMCRefDestroy
-
-
Header: PDSWriteProcs.h:888
-
-
-
Description
-
-
Destroys a marked content reference created with PDSMCRefCreate(). This should only be called once the reference has been placed in the structure tree or if the reference is no longer needed.
-
-
Note: If the PDSMCRef is associated with a PDSMC, it will be set as invalid and ignored on subsequent processing.
-
-
-
\ No newline at end of file
diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/TOC.html b/apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/TOC.html
similarity index 99%
rename from apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/TOC.html
rename to apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/TOC.html
index 7e200462..71c1f814 100644
--- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/TOC.html
+++ b/apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/TOC.html
@@ -1235,7 +1235,6 @@
diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/acrocolor_acrocolor.html b/apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/acrocolor_acrocolor.html
similarity index 100%
rename from apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/acrocolor_acrocolor.html
rename to apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/acrocolor_acrocolor.html
diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASAtom.html b/apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASAtom.html
similarity index 100%
rename from apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASAtom.html
rename to apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASAtom.html
diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASCab.html b/apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASCab.html
similarity index 100%
rename from apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASCab.html
rename to apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASCab.html
diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASCalendarTimeSpan.html b/apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASCalendarTimeSpan.html
similarity index 100%
rename from apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASCalendarTimeSpan.html
rename to apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASCalendarTimeSpan.html
diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASCryptStm.html b/apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASCryptStm.html
similarity index 100%
rename from apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASCryptStm.html
rename to apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASCryptStm.html
diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASDate.html b/apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASDate.html
similarity index 100%
rename from apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASDate.html
rename to apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASDate.html
diff --git a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASDouble.html b/apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASDouble.html
similarity index 97%
rename from apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASDouble.html
rename to apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASDouble.html
index 7f8e25b6..390acd74 100644
--- a/apdfl18/CPlusPlus/APDFL18.0.4PlusP2y/aslayer_ASDouble.html
+++ b/apdfl18/CPlusPlus/APDFL18.0.5PlusP1c/aslayer_ASDouble.html
@@ -72,10 +72,9 @@