From 0ab291a78bd977570ce1f9fbd78439f3f1b38c20 Mon Sep 17 00:00:00 2001 From: ThePhatak <111195860+uddhavphatak@users.noreply.github.com> Date: Mon, 21 Oct 2024 20:37:25 +0530 Subject: [PATCH] Update pdfio.md --- doc/pdfio.md | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/doc/pdfio.md b/doc/pdfio.md index 9062d11..f25d908 100644 --- a/doc/pdfio.md +++ b/doc/pdfio.md @@ -118,20 +118,6 @@ that are defined in a separate header file: ```c #include ``` - - -API Overview -============ - -PDFio exposes several types: - -- `pdfio_file_t`: A PDF file (for reading or writing) -- `pdfio_array_t`: An array of values -- `pdfio_dict_t`: A dictionary of key/value pairs in a PDF file, object, etc. -- `pdfio_obj_t`: An object in a PDF file -- `pdfio_stream_t`: An object stream - - Understanding PDF Files ----------------------- @@ -287,6 +273,19 @@ startxref %startxref keyword ``` +API Overview +============ + +PDFio exposes several types: + +- `pdfio_file_t`: A PDF file (for reading or writing) +- `pdfio_array_t`: An array of values +- `pdfio_dict_t`: A dictionary of key/value pairs in a PDF file, object, etc. +- `pdfio_obj_t`: An object in a PDF file +- `pdfio_stream_t`: An object stream + + + Reading PDF Files -----------------