Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 9.5   10.0   10.1   10.2   10.3   10.4   10.5   11.0   11.1   11.2    Statistic    FMM    Blog  

DynaPDF.GetUsesTransparency

Checks whether a page or the entire document uses transparency.

Component Version macOS Windows Linux Server iOS SDK
DynaPDF 8.2 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "DynaPDF.GetUsesTransparency"; PDF; PageIndex )   More

Parameters

Parameter Description Example
PDF The PDF reference returned from DynaPDF.New. $pdf
PageIndex The page index in range from 1 to DynaPDF.GetPageCount. 1

Result

Returns OK or error.

Description

Checks whether a page or the entire document uses transparency.
This is no quick check as DynaPDF.GetDocUsesTransparency applies. The function parses the page or pages to determine whether transparent objects are really used.
To check whether a specific page uses transparency set the parameter PageNum to the wished page number. The first page is denoted by 1. To check the entire PDF file set PageNum to -1.

The return value is a bit mask on success (a positive integer value), or a error message on failure.
The following flags are defined:
0: The page or document uses no transparency. 
1: The content stream of a page contains transparent objects. 
2: A page defines the blending color space (Group dictionary). 
4: A page contains transparent annotations or form fields. 
The above values can occur in any combination. To check whether a specific flag was set use a binary and operator, e.g. Math.BitwiseAND. e.g. Value 6 means both 2 and 4 flags are set.

See also GetUsesTransparency function in DynaPDF manual.

See also

Release notes

Blog Entries

Created 4th May 2018, last changed 4th May 2018


DynaPDF.GetUserUnit - DynaPDF.GetViewerPreferences

Feedback: Report problem or ask question.