@@ -74,6 +74,7 @@ pub struct Document { /* private fields */ }
7474| [ remove_hidden_text] ( ./organize/remove_hidden_text/ ) | Remove hidden text from PDF-document |
7575| [ remove_images] ( ./organize/remove_images/ ) | Remove images from PDF-document |
7676| [ remove_javascripts] ( ./organize/remove_javascripts/ ) | Remove java scripts from PDF-document |
77+ | [ remove_tables] ( ./organize/remove_tables/ ) | Remove tables from a PDF-document. |
7778| [ page_rotate] ( ./organize/page_rotate/ ) | Rotate a page in the PDF-document. |
7879| [ page_set_size] ( ./organize/page_set_size/ ) | Set the size of a page in the PDF-document. |
7980| [ page_grayscale] ( ./organize/page_grayscale/ ) | Convert page to black and white. |
@@ -85,6 +86,7 @@ pub struct Document { /* private fields */ }
8586| [ page_remove_annotations] ( ./organize/page_remove_annotations/ ) | Remove annotations in page. |
8687| [ page_remove_hidden_text] ( ./organize/page_remove_hidden_text/ ) | Remove hidden text in page. |
8788| [ page_remove_images] ( ./organize/page_remove_images/ ) | Remove images in page. |
89+ | [ page_remove_tables] ( ./organize/page_remove_tables/ ) | Remove tables in page. |
8890
8991
9092## Core PDF functions
@@ -97,10 +99,15 @@ pub struct Document { /* private fields */ }
9799| [ save_as] ( ./core/save_as/ ) | Save the previously opened PDF-document with new filename. |
98100| [ set_license] ( ./core/set_license/ ) | Set license with filename. |
99101| [ extract_text] ( ./core/extract_text/ ) | Return the PDF-document contents as plain text. |
102+ | [ word_count] ( ./core/word_count/ ) | Return word count in PDF-document. |
103+ | [ character_count] ( ./core/character_count/ ) | Return character count in PDF-document. |
100104| [ page_add] ( ./core/page_add/ ) | Add new page in PDF-document. |
101105| [ page_insert] ( ./core/page_insert/ ) | Insert new page at the specified position in PDF-document. |
102106| [ page_delete] ( ./core/page_delete/ ) | Delete specified page in PDF-document. |
103107| [ page_count] ( ./core/page_count/ ) | Return the number of pages in the PDF-document. |
108+ | [ page_word_count] ( ./core/page_word_count/ ) | Return word count on specified page in PDF-document. |
109+ | [ page_character_count] ( ./core/page_character_count/ ) | Return character count on specified page in PDF-document. |
110+ | [ page_is_blank] ( ./core/page_is_blank/ ) | Return page is blank in PDF-document. |
104111
105112
106113## Miscellaneous
0 commit comments