You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dict{String,Union{CDDate, String, CosObject}} with 1 entry:
159
+
"Producer" => "Skia/PDF m79"
160
+
```
161
+
#### Getting the Number of Pages
162
+
```
163
+
julia> npage = pdDocGetPageCount(doc)
164
+
1
165
+
```
166
+
#### Get the Page Handle
167
+
```
168
+
julia> page = pdDocGetPage(doc, 1)
169
+
PDFIO.PD.PDPageImpl(
170
+
...
171
+
)
172
+
```
173
+
#### View Page Text Contents
174
+
```
175
+
julia> pdPageExtractText(stdout, page);
176
+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
177
+
labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
178
+
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
179
+
voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
180
+
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
181
+
```
182
+
128
183
As can be seen above, granular APIs are provided in `PDFIO` that can be used in combination to achieve a desirable task. For details, please refer to the [Architecture and Design](@ref).
0 commit comments