Foxit PDF SDK
|
Public Member Functions | |
def | ReflowPage (page) |
Constructor, from a parsed PDF page. More... | |
def | GetContentHeight () |
Get content height after current reflow page object has been parsed. More... | |
def | GetContentWidth () |
Get content width after current reflow page object has been parsed. More... | |
def | GetDisplayMatrix (offset_x, offset_y, width, height, rotate) |
Get the display matrix, according to the offset of top side between current reflow page and screen. More... | |
def | GetFocusData (matrix, point) |
Get focus data corresponding to a given position in device coordinate system. More... | |
def | GetFocusPosition (matrix, focus_data) |
Get the position in device coordinate system corresponding to a given focus data. More... | |
def | IsEmpty () |
Check whether current object is empty or not. More... | |
def | IsParsed () |
Check if current reflow page has been parsed or not. More... | |
def | SetImageScale (image_scale) |
Set image scale. This can be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse . More... | |
def | SetLineSpace (line_space) |
Set line space. This can be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse . More... | |
def | SetParseFlags (flags) |
Set the parsing flag. This can be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse . More... | |
def | SetScreenMargin (left, top, right, bottom) |
Set margin. This can be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse . More... | |
def | SetScreenSize (width, height) |
Set screen size. This should be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse . More... | |
def | SetTopSpace (top_space) |
Set the top space. This can be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse . More... | |
def | SetZoom (zoom) |
Set zoom factor. This can be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse . More... | |
def | StartParse (pause) |
Start to parse current reflow page. More... | |
Static Public Attributes | |
e_Normal = _fsdk.ReflowPage_e_Normal | |
Parsing flag for normal mode, without image. | |
e_NoTruncate = _fsdk.ReflowPage_e_NoTruncate | |
Parsing flag to decide whether to allow to truncate the first/last image or line of text within the specified screen size or not. More... | |
e_WithImage = _fsdk.ReflowPage_e_WithImage | |
Parsing flag for image mode. | |
In order to display page contents in a small screen device, Foxit PDF SDK introduces the concept of "reflow page". In the reflow page, original PDF page contents will be laid out to fit the specified screen size.
For a PDF page, user may wants to keep focusing on a location in the reflow page when user switches between this PDF page and its related reflow page, or switch among these related reflow pages which are in different size. In order to track the focus location, Foxit PDF SDK uses "focus data" to represent the focus location. Focus data is similar to bookmark or destination in PDF, but it is simpler. User can store the focus data (or save the data to file) so that user can retrieve the focus location again by the focus data later, even if the size of reflow page is changed.
A reflow page object should be constructed from a parsed PDF page. This class offers functions to:
Start to parse a reflow page by functions FoxitPDFSDKPython2.ReflowPage.StartParse . Before parsing a reflow page, use should use function FoxitPDFSDKPython2.ReflowPage.SetScreenSize to specify the screen size for the reflow page. User can also use following functions to specify other factors which will affect on the parsing result for the reflow page: FoxitPDFSDKPython2.ReflowPage.SetZoom , FoxitPDFSDKPython2.ReflowPage.SetParseFlags , FoxitPDFSDKPython2.ReflowPage.SetLineSpace , FoxitPDFSDKPython2.ReflowPage.SetImageScale , FoxitPDFSDKPython2.ReflowPage.SetTopSpace . If these function are not called before parsing a reflow page, default values will be used. Please refer to comment of these functions for more details.
Get the actual content size and matrix of a parsed reflow page, by functions FoxitPDFSDKPython2.ReflowPage.GetContentWidth , FoxitPDFSDKPython2.ReflowPage.GetContentHeight ,FoxitPDFSDKPython2.ReflowPage.GetDisplayMatrix .
Get the focus data for a specified position in reflow page, by function FoxitPDFSDKPython2.ReflowPage.GetFocusData , or retrieve the position by a focus data, by function FoxitPDFSDKPython2.ReflowPage.GetFocusPosition .
To render the reflow page, please use function FoxitPDFSDKPython2.Renderer.StartRenderReflowPage .
def FoxitPDFSDKPython2.ReflowPage.ReflowPage | ( | page | ) |
Constructor, from a parsed PDF page.
Constructor, with another reflow page object.
[in] | page | A valid PDF page object which has been parsed. |
[in] | other | Another reflow page object. |
def FoxitPDFSDKPython2.ReflowPage.GetContentHeight | ( | ) |
Get content height after current reflow page object has been parsed.
def FoxitPDFSDKPython2.ReflowPage.GetContentWidth | ( | ) |
Get content width after current reflow page object has been parsed.
def FoxitPDFSDKPython2.ReflowPage.GetDisplayMatrix | ( | offset_x, | |
offset_y, | |||
width, | |||
height, | |||
rotate | |||
) |
Get the display matrix, according to the offset of top side between current reflow page and screen.
This function can only be used when reflow page has been parsed.
[in] | offset_x | Offset value, which means the offset from top side of current reflow page to the top side of screen. |
[in] | offset_y | Offset value, which means the offset from left side of current reflow page to the left side of screen. |
[in] | width | Width of the transformation area in screen, commonly in pixels. |
[in] | height | Height of the transformation area in screen, commonly in pixels. |
[in] | rotate | Rotation value. Please refer to values starting from FoxitPDFSDKPython2.e_Rotation0 and this should be one of these values. |
def FoxitPDFSDKPython2.ReflowPage.GetFocusData | ( | matrix, | |
point | |||
) |
Get focus data corresponding to a given position in device coordinate system.
This function can only be used when reflow page has been parsed.
Focus data, similar to bookmark or destination in PDF, is used to locate the position of a specified content in reflow page. For a PDF page, position of a specified content is fixed and will not be changed even if the size of related reflow page is changed. So focus data can be used to locate the same content from a PDF page in its related reflow pages with different sizes but same reflow content.
Usually, user can call function FoxitPDFSDKPython2.ReflowPage.GetFocusData to get focus data for a specified location, and store the focus data. When the reflow page's size is changed, user can use the stored focus data in function FoxitPDFSDKPython2.ReflowPage.GetFocusPosition to get the new position and then still focus on or near the same content.
[in] | matrix | A matrix returned by function FoxitPDFSDKPython2.ReflowPage.GetDisplayMatrix . |
[in] | point | The point of a specified position, in device coordinate system. |
def FoxitPDFSDKPython2.ReflowPage.GetFocusPosition | ( | matrix, | |
focus_data | |||
) |
Get the position in device coordinate system corresponding to a given focus data.
This function can only be used when reflow page has been parsed.
Focus data, similar to bookmark or destination in PDF, is used to locate the position of a specified content in reflow page. For a PDF page, position of a specified content is fixed and will not be changed even if the size of related reflow page is changed. So focus data can be used to locate the same content from a PDF page in its related reflow pages with different sizes but same reflow content.
Usually, user can call function FoxitPDFSDKPython2.ReflowPage.GetFocusData to get focus data for a specified location, and store the focus data. When the reflow page's size is changed, user can use the stored focus data in function FoxitPDFSDKPython2.ReflowPage.GetFocusPosition to get the new position and then still focus on or near the same content.
[in] | matrix | A matrix returned by function FoxitPDFSDKPython2.ReflowPage.GetDisplayMatrix . |
[in] | focus_data | Focus data used to get its corresponding position in device coordinate system, with specified matrix. This is retrieved by previous calling of function FoxitPDFSDKPython2.ReflowPage.GetFocusData . |
def FoxitPDFSDKPython2.ReflowPage.IsEmpty | ( | ) |
Check whether current object is empty or not.
When the current object is empty, that means current object is useless.
def FoxitPDFSDKPython2.ReflowPage.IsParsed | ( | ) |
Check if current reflow page has been parsed or not.
def FoxitPDFSDKPython2.ReflowPage.SetImageScale | ( | image_scale | ) |
Set image scale. This can be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse .
[in] | image_scale | The image scale. This value should be positive number. If no image scale is set, value 1.0f will be used by default. |
def FoxitPDFSDKPython2.ReflowPage.SetLineSpace | ( | line_space | ) |
Set line space. This can be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse .
[in] | line_space | The line space. This value should between -25 to (height/2). If no line space is set, value 0 will be used by default. |
def FoxitPDFSDKPython2.ReflowPage.SetParseFlags | ( | flags | ) |
Set the parsing flag. This can be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse .
[in] | flags | Parsing flags. Please refer to values starting from FoxitPDFSDKPython2.ReflowPage.e_Normal and this should be one or a combination of these values. If no parsing flag is set, value FoxitPDFSDKPython2.ReflowPage.e_Normal will be used by default. |
def FoxitPDFSDKPython2.ReflowPage.SetScreenMargin | ( | left, | |
top, | |||
right, | |||
bottom | |||
) |
Set margin. This can be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse .
If no margin has ever been set to current reflow page, Foxit PDF SDK will use value (0, 0, 0, 0) as default margin.
If new margin is set, the new margin will take effect until current reflow page has been re-parsed and rendered again.
[in] | left | The left margin. This value should between 0 and (screen width / 3). |
[in] | top | The left margin. This value should between 0 and (screen height/ 3). |
[in] | right | The left margin. This value should between 0 and (screen width / 3). |
[in] | bottom | The left margin. This value should between 0 and (screen height / 3). |
def FoxitPDFSDKPython2.ReflowPage.SetScreenSize | ( | width, | |
height | |||
) |
Set screen size. This should be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse .
Before parsing a reflow page, user should call this function to set the screen size for parsing the reflow page.
[in] | width | The screen width. |
[in] | height | The screen height. |
def FoxitPDFSDKPython2.ReflowPage.SetTopSpace | ( | top_space | ) |
Set the top space. This can be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse .
This function is used to set the distance between the page's top and the screen's top. The distance will take effect when parsing a reflow page.
[in] | top_space | The top space. This value should between 0 and height. If no top space is set, value 0 will be used by default. |
def FoxitPDFSDKPython2.ReflowPage.SetZoom | ( | zoom | ) |
Set zoom factor. This can be called before calling function FoxitPDFSDKPython2.ReflowPage.StartParse .
If no zoom factor has ever been set to current reflow page, Foxit PDF SDK will use value 100 as default zoom factor, which means 100%.
If new zoom factor is set, the new zoom factor will take effect until current reflow page has been re-parsed and rendered again.
[in] | zoom | Zoom factor. The value represents the percent value, for example, 100 means 100%. This value should between 25 and 1000. If no zoom factor is set, value 100 will be used by default. |
def FoxitPDFSDKPython2.ReflowPage.StartParse | ( | pause | ) |
Start to parse current reflow page.
It may take a long time to parsing a reflow page, so Foxit PDF SDK uses a progressive process to do this. All the resources about reflow page will be loaded after the reflow page is parsed.
This function should be called before any getting function of current reflow page object can be used. Currently this function can not be supported if there are widget annotations in current page.
[in] | pause | Pause callback object which decides if the parsing process needs to be paused. This can be null which means not to pause during the parsing process. If this is not null, it should be a valid pause object implemented by user. |
|
static |
Parsing flag to decide whether to allow to truncate the first/last image or line of text within the specified screen size or not.
The height of final parsed reflow page may be larger than the actual screen height. In this case, the content of a reflow page would be shown in more than one screen in application.
Application may use following modes to show such reflow page:
Show only part of content of the reflow page in the screen in one time. When user clicks or taps, show the previous or next part of content. This is like to turn to a page in a real book. Here, call this mode as "single screen mode".
Show the reflow page continuously – that means user can scroll the screen to see any part of content in this reflow page. Here, call this mode as "scroll screen mode".
If use "single screen mode" to show a reflow page, a truncate problem may occurs: the first line of text or image just shows the bottom half in the top of the screen, or the last line of text of image just shows the top half in the bottom of the screen. This flag can be set to avoid such problem.
If use "scroll screen mode", no need to use this flag.