mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2025-04-06 00:46:45 +02:00
Add pdfioFileGetCatalog function (Issue #67)
Refactor the pdfioFileCreateXxx functions to use a common (private) function to handle creating/initializing the pdfio_file_t object and base file objects. Update unit tests to display the filename for the pdfioFileClose test.
This commit is contained in:
parent
a1e14503fd
commit
23883268e3
@ -5,6 +5,8 @@ Changes in PDFio
|
|||||||
v1.3.0 (Month DD, YYYY)
|
v1.3.0 (Month DD, YYYY)
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
|
- Added `pdfioFileGetCatalog` API for accessing the root/catalog object of a
|
||||||
|
PDF file (Issue #67)
|
||||||
- Updated number support to avoid locale issues (Issue #61)
|
- Updated number support to avoid locale issues (Issue #61)
|
||||||
- Optimized string pool code.
|
- Optimized string pool code.
|
||||||
|
|
||||||
|
563
pdfio-file.c
563
pdfio-file.c
@ -19,12 +19,12 @@
|
|||||||
|
|
||||||
static pdfio_obj_t *add_obj(pdfio_file_t *pdf, size_t number, unsigned short generation, off_t offset);
|
static pdfio_obj_t *add_obj(pdfio_file_t *pdf, size_t number, unsigned short generation, off_t offset);
|
||||||
static int compare_objmaps(_pdfio_objmap_t *a, _pdfio_objmap_t *b);
|
static int compare_objmaps(_pdfio_objmap_t *a, _pdfio_objmap_t *b);
|
||||||
|
static pdfio_file_t *create_common(const char *filename, int fd, pdfio_output_cb_t output_cb, void *output_cbdata, const char *version, pdfio_rect_t *media_box, pdfio_rect_t *crop_box, pdfio_error_cb_t error_cb, void *error_cbdata);
|
||||||
static const char *get_info_string(pdfio_file_t *pdf, const char *key);
|
static const char *get_info_string(pdfio_file_t *pdf, const char *key);
|
||||||
static struct lconv *get_lconv(void);
|
static struct lconv *get_lconv(void);
|
||||||
static bool load_obj_stream(pdfio_obj_t *obj);
|
static bool load_obj_stream(pdfio_obj_t *obj);
|
||||||
static bool load_pages(pdfio_file_t *pdf, pdfio_obj_t *obj, size_t depth);
|
static bool load_pages(pdfio_file_t *pdf, pdfio_obj_t *obj, size_t depth);
|
||||||
static bool load_xref(pdfio_file_t *pdf, off_t xref_offset, pdfio_password_cb_t password_cb, void *password_data);
|
static bool load_xref(pdfio_file_t *pdf, off_t xref_offset, pdfio_password_cb_t password_cb, void *password_data);
|
||||||
static bool write_catalog(pdfio_file_t *pdf);
|
|
||||||
static bool write_pages(pdfio_file_t *pdf);
|
static bool write_pages(pdfio_file_t *pdf);
|
||||||
static bool write_trailer(pdfio_file_t *pdf);
|
static bool write_trailer(pdfio_file_t *pdf);
|
||||||
|
|
||||||
@ -120,10 +120,7 @@ pdfioFileClose(pdfio_file_t *pdf) // I - PDF file
|
|||||||
{
|
{
|
||||||
ret = false;
|
ret = false;
|
||||||
|
|
||||||
if (pdfioObjClose(pdf->info_obj))
|
if (pdfioObjClose(pdf->info_obj) && write_pages(pdf) && pdfioObjClose(pdf->root_obj) && write_trailer(pdf))
|
||||||
if (write_pages(pdf))
|
|
||||||
if (write_catalog(pdf))
|
|
||||||
if (write_trailer(pdf))
|
|
||||||
ret = _pdfioFileFlush(pdf);
|
ret = _pdfioFileFlush(pdf);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -173,7 +170,7 @@ pdfioFileClose(pdfio_file_t *pdf) // I - PDF file
|
|||||||
// CropBox for pages in the PDF file - if `NULL` then a default "Universal" size
|
// CropBox for pages in the PDF file - if `NULL` then a default "Universal" size
|
||||||
// of 8.27x11in (the intersection of US Letter and ISO A4) is used.
|
// of 8.27x11in (the intersection of US Letter and ISO A4) is used.
|
||||||
//
|
//
|
||||||
// The "error_cb" and "error_data" arguments specify an error handler callback
|
// The "error_cb" and "error_cbdata" arguments specify an error handler callback
|
||||||
// and its data pointer - if `NULL` the default error handler is used that
|
// and its data pointer - if `NULL` the default error handler is used that
|
||||||
// writes error messages to `stderr`.
|
// writes error messages to `stderr`.
|
||||||
//
|
//
|
||||||
@ -185,126 +182,37 @@ pdfioFileCreate(
|
|||||||
pdfio_rect_t *media_box, // I - Default MediaBox for pages
|
pdfio_rect_t *media_box, // I - Default MediaBox for pages
|
||||||
pdfio_rect_t *crop_box, // I - Default CropBox for pages
|
pdfio_rect_t *crop_box, // I - Default CropBox for pages
|
||||||
pdfio_error_cb_t error_cb, // I - Error callback or `NULL` for default
|
pdfio_error_cb_t error_cb, // I - Error callback or `NULL` for default
|
||||||
void *error_data) // I - Error callback data, if any
|
void *error_cbdata) // I - Error callback data, if any
|
||||||
{
|
{
|
||||||
pdfio_file_t *pdf; // PDF file
|
pdfio_file_t *pdf; // PDF file
|
||||||
pdfio_dict_t *dict; // Dictionary for pages object
|
int fd; // File descriptor
|
||||||
pdfio_dict_t *info_dict; // Dictionary for information object
|
|
||||||
unsigned char id_value[16]; // File ID value
|
|
||||||
|
|
||||||
|
|
||||||
// Range check input...
|
// Range check input...
|
||||||
if (!filename)
|
if (!filename)
|
||||||
return (NULL);
|
return (NULL);
|
||||||
|
|
||||||
if (!version)
|
// Create the file...
|
||||||
version = "2.0";
|
if ((fd = open(filename, O_WRONLY | O_BINARY | O_CREAT | O_TRUNC, 0666)) < 0)
|
||||||
|
|
||||||
if (!error_cb)
|
|
||||||
{
|
|
||||||
error_cb = _pdfioFileDefaultError;
|
|
||||||
error_data = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Allocate a PDF file structure...
|
|
||||||
if ((pdf = (pdfio_file_t *)calloc(1, sizeof(pdfio_file_t))) == NULL)
|
|
||||||
{
|
{
|
||||||
pdfio_file_t temp; // Dummy file
|
pdfio_file_t temp; // Dummy file
|
||||||
char message[8192]; // Message string
|
char message[8192]; // Message string
|
||||||
|
|
||||||
temp.filename = (char *)filename;
|
temp.filename = (char *)filename;
|
||||||
snprintf(message, sizeof(message), "Unable to allocate memory for PDF file - %s", strerror(errno));
|
snprintf(message, sizeof(message), "Unable to create '%s': %s", filename, strerror(errno));
|
||||||
(error_cb)(&temp, message, error_data);
|
(error_cb)(&temp, message, error_cbdata);
|
||||||
|
|
||||||
return (NULL);
|
return (NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
pdf->loc = get_lconv();
|
if ((pdf = create_common(filename, fd, /*output_cb*/NULL, /*output_cbdata*/NULL, version, media_box, crop_box, error_cb, error_cbdata)) == NULL)
|
||||||
pdf->filename = strdup(filename);
|
|
||||||
pdf->version = strdup(version);
|
|
||||||
pdf->mode = _PDFIO_MODE_WRITE;
|
|
||||||
pdf->error_cb = error_cb;
|
|
||||||
pdf->error_data = error_data;
|
|
||||||
pdf->permissions = PDFIO_PERMISSION_ALL;
|
|
||||||
pdf->bufptr = pdf->buffer;
|
|
||||||
pdf->bufend = pdf->buffer + sizeof(pdf->buffer);
|
|
||||||
|
|
||||||
if (media_box)
|
|
||||||
{
|
{
|
||||||
pdf->media_box = *media_box;
|
// Remove the newly created file if we can't create the PDF file object...
|
||||||
}
|
close(fd);
|
||||||
else
|
unlink(filename);
|
||||||
{
|
|
||||||
// Default to "universal" size (intersection of A4 and US Letter)
|
|
||||||
pdf->media_box.x2 = 210.0 * 72.0f / 25.4f;
|
|
||||||
pdf->media_box.y2 = 11.0f * 72.0f;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (crop_box)
|
|
||||||
{
|
|
||||||
pdf->crop_box = *crop_box;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Default to "universal" size (intersection of A4 and US Letter)
|
|
||||||
pdf->crop_box.x2 = 210.0 * 72.0f / 25.4f;
|
|
||||||
pdf->crop_box.y2 = 11.0f * 72.0f;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create the file...
|
|
||||||
if ((pdf->fd = open(filename, O_WRONLY | O_BINARY | O_CREAT | O_TRUNC, 0666)) < 0)
|
|
||||||
{
|
|
||||||
_pdfioFileError(pdf, "Unable to create file - %s", strerror(errno));
|
|
||||||
free(pdf->filename);
|
|
||||||
free(pdf->version);
|
|
||||||
free(pdf);
|
|
||||||
return (NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Write a standard PDF header...
|
|
||||||
if (!_pdfioFilePrintf(pdf, "%%PDF-%s\n%%PDF\303\254o\n", version))
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
if (pdf->loc)
|
|
||||||
_pdfioFilePrintf(pdf, "%%decimal_point=\"%s\"\n", pdf->loc->decimal_point);
|
|
||||||
|
|
||||||
// Create the pages object...
|
|
||||||
if ((dict = pdfioDictCreate(pdf)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
pdfioDictSetName(dict, "Type", "Pages");
|
|
||||||
|
|
||||||
if ((pdf->pages_obj = pdfioFileCreateObj(pdf, dict)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
// Create the info object...
|
|
||||||
if ((info_dict = pdfioDictCreate(pdf)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
pdfioDictSetDate(info_dict, "CreationDate", time(NULL));
|
|
||||||
pdfioDictSetString(info_dict, "Producer", "pdfio/" PDFIO_VERSION);
|
|
||||||
|
|
||||||
if ((pdf->info_obj = pdfioFileCreateObj(pdf, info_dict)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
// Create random file ID values...
|
|
||||||
_pdfioCryptoMakeRandom(id_value, sizeof(id_value));
|
|
||||||
|
|
||||||
if ((pdf->id_array = pdfioArrayCreate(pdf)) != NULL)
|
|
||||||
{
|
|
||||||
pdfioArrayAppendBinary(pdf->id_array, id_value, sizeof(id_value));
|
|
||||||
pdfioArrayAppendBinary(pdf->id_array, id_value, sizeof(id_value));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return (pdf);
|
return (pdf);
|
||||||
|
|
||||||
// Common error handling code...
|
|
||||||
error:
|
|
||||||
|
|
||||||
pdfioFileClose(pdf);
|
|
||||||
|
|
||||||
unlink(filename);
|
|
||||||
|
|
||||||
return (NULL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -444,13 +352,13 @@ _pdfioFileCreateObj(
|
|||||||
// 'pdfioFileCreateOutput()' - Create a PDF file through an output callback.
|
// 'pdfioFileCreateOutput()' - Create a PDF file through an output callback.
|
||||||
//
|
//
|
||||||
// This function creates a new PDF file that is streamed though an output
|
// This function creates a new PDF file that is streamed though an output
|
||||||
// callback. The "output_cb" and "output_ctx" arguments specify the output
|
// callback. The "output_cb" and "output_cbdata" arguments specify the output
|
||||||
// callback and its context pointer which is called whenever data needs to be
|
// callback and its data pointer which is called whenever data needs to be
|
||||||
// written:
|
// written:
|
||||||
//
|
//
|
||||||
// ```
|
// ```
|
||||||
// ssize_t
|
// ssize_t
|
||||||
// output_cb(void *output_ctx, const void *buffer, size_t bytes)
|
// output_cb(void *output_cbdata, const void *buffer, size_t bytes)
|
||||||
// {
|
// {
|
||||||
// // Write buffer to output and return the number of bytes written
|
// // Write buffer to output and return the number of bytes written
|
||||||
// }
|
// }
|
||||||
@ -463,7 +371,7 @@ _pdfioFileCreateObj(
|
|||||||
// CropBox for pages in the PDF file - if `NULL` then a default "Universal" size
|
// CropBox for pages in the PDF file - if `NULL` then a default "Universal" size
|
||||||
// of 8.27x11in (the intersection of US Letter and ISO A4) is used.
|
// of 8.27x11in (the intersection of US Letter and ISO A4) is used.
|
||||||
//
|
//
|
||||||
// The "error_cb" and "error_data" arguments specify an error handler callback
|
// The "error_cb" and "error_cbdata" arguments specify an error handler callback
|
||||||
// and its data pointer - if `NULL` the default error handler is used that
|
// and its data pointer - if `NULL` the default error handler is used that
|
||||||
// writes error messages to `stderr`.
|
// writes error messages to `stderr`.
|
||||||
//
|
//
|
||||||
@ -474,122 +382,15 @@ _pdfioFileCreateObj(
|
|||||||
|
|
||||||
pdfio_file_t * // O - PDF file or `NULL` on error
|
pdfio_file_t * // O - PDF file or `NULL` on error
|
||||||
pdfioFileCreateOutput(
|
pdfioFileCreateOutput(
|
||||||
pdfio_output_cb_t output_cb, // I - Output callback
|
pdfio_output_cb_t output_cb, // I - Output callback function
|
||||||
void *output_ctx, // I - Output context
|
void *output_cbdata, // I - Output callback data
|
||||||
const char *version, // I - PDF version number or `NULL` for default (2.0)
|
const char *version, // I - PDF version number or `NULL` for default (2.0)
|
||||||
pdfio_rect_t *media_box, // I - Default MediaBox for pages
|
pdfio_rect_t *media_box, // I - Default MediaBox for pages
|
||||||
pdfio_rect_t *crop_box, // I - Default CropBox for pages
|
pdfio_rect_t *crop_box, // I - Default CropBox for pages
|
||||||
pdfio_error_cb_t error_cb, // I - Error callback or `NULL` for default
|
pdfio_error_cb_t error_cb, // I - Error callback or `NULL` for default
|
||||||
void *error_data) // I - Error callback data, if any
|
void *error_cbdata) // I - Error callback data, if any
|
||||||
{
|
{
|
||||||
pdfio_file_t *pdf; // PDF file
|
return (create_common("output.pdf", /*fd*/-1, output_cb, output_cbdata, version, media_box, crop_box, error_cb, error_cbdata));
|
||||||
pdfio_dict_t *dict; // Dictionary for pages object
|
|
||||||
pdfio_dict_t *info_dict; // Dictionary for information object
|
|
||||||
unsigned char id_value[16]; // File ID value
|
|
||||||
|
|
||||||
|
|
||||||
// Range check input...
|
|
||||||
if (!output_cb)
|
|
||||||
return (NULL);
|
|
||||||
|
|
||||||
if (!version)
|
|
||||||
version = "2.0";
|
|
||||||
|
|
||||||
if (!error_cb)
|
|
||||||
{
|
|
||||||
error_cb = _pdfioFileDefaultError;
|
|
||||||
error_data = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Allocate a PDF file structure...
|
|
||||||
if ((pdf = (pdfio_file_t *)calloc(1, sizeof(pdfio_file_t))) == NULL)
|
|
||||||
{
|
|
||||||
pdfio_file_t temp; // Dummy file
|
|
||||||
char message[8192]; // Message string
|
|
||||||
|
|
||||||
temp.filename = (char *)"output.pdf";
|
|
||||||
snprintf(message, sizeof(message), "Unable to allocate memory for PDF file - %s", strerror(errno));
|
|
||||||
(error_cb)(&temp, message, error_data);
|
|
||||||
return (NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
pdf->loc = get_lconv();
|
|
||||||
pdf->filename = strdup("output.pdf");
|
|
||||||
pdf->version = strdup(version);
|
|
||||||
pdf->mode = _PDFIO_MODE_WRITE;
|
|
||||||
pdf->error_cb = error_cb;
|
|
||||||
pdf->error_data = error_data;
|
|
||||||
pdf->permissions = PDFIO_PERMISSION_ALL;
|
|
||||||
pdf->bufptr = pdf->buffer;
|
|
||||||
pdf->bufend = pdf->buffer + sizeof(pdf->buffer);
|
|
||||||
|
|
||||||
if (media_box)
|
|
||||||
{
|
|
||||||
pdf->media_box = *media_box;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Default to "universal" size (intersection of A4 and US Letter)
|
|
||||||
pdf->media_box.x2 = 210.0 * 72.0f / 25.4f;
|
|
||||||
pdf->media_box.y2 = 11.0f * 72.0f;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (crop_box)
|
|
||||||
{
|
|
||||||
pdf->crop_box = *crop_box;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Default to "universal" size (intersection of A4 and US Letter)
|
|
||||||
pdf->crop_box.x2 = 210.0 * 72.0f / 25.4f;
|
|
||||||
pdf->crop_box.y2 = 11.0f * 72.0f;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save output callback...
|
|
||||||
pdf->fd = -1;
|
|
||||||
pdf->output_cb = output_cb;
|
|
||||||
pdf->output_ctx = output_ctx;
|
|
||||||
|
|
||||||
// Write a standard PDF header...
|
|
||||||
if (!_pdfioFilePrintf(pdf, "%%PDF-%s\n%%\342\343\317\323\n", version))
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
// Create the pages object...
|
|
||||||
if ((dict = pdfioDictCreate(pdf)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
pdfioDictSetName(dict, "Type", "Pages");
|
|
||||||
|
|
||||||
if ((pdf->pages_obj = pdfioFileCreateObj(pdf, dict)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
// Create the info object...
|
|
||||||
if ((info_dict = pdfioDictCreate(pdf)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
pdfioDictSetDate(info_dict, "CreationDate", time(NULL));
|
|
||||||
pdfioDictSetString(info_dict, "Producer", "pdfio/" PDFIO_VERSION);
|
|
||||||
|
|
||||||
if ((pdf->info_obj = pdfioFileCreateObj(pdf, info_dict)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
// Create random file ID values...
|
|
||||||
_pdfioCryptoMakeRandom(id_value, sizeof(id_value));
|
|
||||||
|
|
||||||
if ((pdf->id_array = pdfioArrayCreate(pdf)) != NULL)
|
|
||||||
{
|
|
||||||
pdfioArrayAppendBinary(pdf->id_array, id_value, sizeof(id_value));
|
|
||||||
pdfioArrayAppendBinary(pdf->id_array, id_value, sizeof(id_value));
|
|
||||||
}
|
|
||||||
|
|
||||||
return (pdf);
|
|
||||||
|
|
||||||
// Common error handling code...
|
|
||||||
error:
|
|
||||||
|
|
||||||
pdfioFileClose(pdf);
|
|
||||||
|
|
||||||
return (NULL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -711,13 +512,11 @@ pdfioFileCreateTemporary(
|
|||||||
pdfio_rect_t *media_box, // I - Default MediaBox for pages
|
pdfio_rect_t *media_box, // I - Default MediaBox for pages
|
||||||
pdfio_rect_t *crop_box, // I - Default CropBox for pages
|
pdfio_rect_t *crop_box, // I - Default CropBox for pages
|
||||||
pdfio_error_cb_t error_cb, // I - Error callback or `NULL` for default
|
pdfio_error_cb_t error_cb, // I - Error callback or `NULL` for default
|
||||||
void *error_data) // I - Error callback data, if any
|
void *error_cbdata) // I - Error callback data, if any
|
||||||
{
|
{
|
||||||
pdfio_file_t *pdf; // PDF file
|
pdfio_file_t *pdf; // PDF file
|
||||||
pdfio_dict_t *dict; // Dictionary for pages object
|
int i, // Looping var
|
||||||
pdfio_dict_t *info_dict; // Dictionary for information object
|
fd; // File descriptor
|
||||||
unsigned char id_value[16]; // File ID value
|
|
||||||
int i; // Looping var
|
|
||||||
const char *tmpdir; // Temporary directory
|
const char *tmpdir; // Temporary directory
|
||||||
#if _WIN32 || defined(__APPLE__)
|
#if _WIN32 || defined(__APPLE__)
|
||||||
char tmppath[256]; // Temporary directory path
|
char tmppath[256]; // Temporary directory path
|
||||||
@ -733,31 +532,7 @@ pdfioFileCreateTemporary(
|
|||||||
return (NULL);
|
return (NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!version)
|
// Create the temporary PDF file...
|
||||||
version = "2.0";
|
|
||||||
|
|
||||||
if (!error_cb)
|
|
||||||
{
|
|
||||||
error_cb = _pdfioFileDefaultError;
|
|
||||||
error_data = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Allocate a PDF file structure...
|
|
||||||
if ((pdf = (pdfio_file_t *)calloc(1, sizeof(pdfio_file_t))) == NULL)
|
|
||||||
{
|
|
||||||
pdfio_file_t temp; // Dummy file
|
|
||||||
char message[8192]; // Message string
|
|
||||||
|
|
||||||
temp.filename = (char *)"temporary.pdf";
|
|
||||||
snprintf(message, sizeof(message), "Unable to allocate memory for PDF file - %s", strerror(errno));
|
|
||||||
(error_cb)(&temp, message, error_data);
|
|
||||||
|
|
||||||
*buffer = '\0';
|
|
||||||
|
|
||||||
return (NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Create the file...
|
|
||||||
#if _WIN32
|
#if _WIN32
|
||||||
if ((tmpdir = getenv("TEMP")) == NULL)
|
if ((tmpdir = getenv("TEMP")) == NULL)
|
||||||
{
|
{
|
||||||
@ -785,99 +560,35 @@ pdfioFileCreateTemporary(
|
|||||||
tmpdir = "/tmp";
|
tmpdir = "/tmp";
|
||||||
#endif // _WIN32
|
#endif // _WIN32
|
||||||
|
|
||||||
for (i = 0; i < 1000; i ++)
|
for (i = 0, fd = -1; i < 1000; i ++)
|
||||||
{
|
{
|
||||||
_pdfioCryptoMakeRandom((uint8_t *)&tmpnum, sizeof(tmpnum));
|
_pdfioCryptoMakeRandom((uint8_t *)&tmpnum, sizeof(tmpnum));
|
||||||
snprintf(buffer, bufsize, "%s/%08x.pdf", tmpdir, tmpnum);
|
snprintf(buffer, bufsize, "%s/%08x.pdf", tmpdir, tmpnum);
|
||||||
if ((pdf->fd = open(buffer, O_WRONLY | O_BINARY | O_CREAT | O_TRUNC | O_EXCL, 0666)) >= 0)
|
if ((fd = open(buffer, O_WRONLY | O_BINARY | O_CREAT | O_TRUNC | O_EXCL, 0666)) >= 0)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
pdf->loc = get_lconv();
|
if (fd < 0)
|
||||||
pdf->filename = strdup(buffer);
|
|
||||||
|
|
||||||
if (i >= 1000)
|
|
||||||
{
|
{
|
||||||
_pdfioFileError(pdf, "Unable to create file - %s", strerror(errno));
|
pdfio_file_t temp; // Dummy file
|
||||||
free(pdf->filename);
|
char message[8192]; // Message string
|
||||||
free(pdf);
|
|
||||||
*buffer = '\0';
|
temp.filename = (char *)"<temporary>";
|
||||||
|
snprintf(message, sizeof(message), "Unable to create temporary PDF file: %s", strerror(errno));
|
||||||
|
(error_cb)(&temp, message, error_cbdata);
|
||||||
|
|
||||||
return (NULL);
|
return (NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
pdf->version = strdup(version);
|
if ((pdf = create_common(buffer, fd, /*output_cb*/NULL, /*output_cbdata*/NULL, version, media_box, crop_box, error_cb, error_cbdata)) == NULL)
|
||||||
pdf->mode = _PDFIO_MODE_WRITE;
|
|
||||||
pdf->error_cb = error_cb;
|
|
||||||
pdf->error_data = error_data;
|
|
||||||
pdf->permissions = PDFIO_PERMISSION_ALL;
|
|
||||||
pdf->bufptr = pdf->buffer;
|
|
||||||
pdf->bufend = pdf->buffer + sizeof(pdf->buffer);
|
|
||||||
|
|
||||||
if (media_box)
|
|
||||||
{
|
{
|
||||||
pdf->media_box = *media_box;
|
// Remove the temporary file if we can't create the PDF file object...
|
||||||
}
|
close(fd);
|
||||||
else
|
unlink(buffer);
|
||||||
{
|
*buffer = '\0';
|
||||||
// Default to "universal" size (intersection of A4 and US Letter)
|
|
||||||
pdf->media_box.x2 = 210.0 * 72.0f / 25.4f;
|
|
||||||
pdf->media_box.y2 = 11.0f * 72.0f;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (crop_box)
|
|
||||||
{
|
|
||||||
pdf->crop_box = *crop_box;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
// Default to "universal" size (intersection of A4 and US Letter)
|
|
||||||
pdf->crop_box.x2 = 210.0 * 72.0f / 25.4f;
|
|
||||||
pdf->crop_box.y2 = 11.0f * 72.0f;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Write a standard PDF header...
|
|
||||||
if (!_pdfioFilePrintf(pdf, "%%PDF-%s\n%%\342\343\317\323\n", version))
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
// Create the pages object...
|
|
||||||
if ((dict = pdfioDictCreate(pdf)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
pdfioDictSetName(dict, "Type", "Pages");
|
|
||||||
|
|
||||||
if ((pdf->pages_obj = pdfioFileCreateObj(pdf, dict)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
// Create the info object...
|
|
||||||
if ((info_dict = pdfioDictCreate(pdf)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
pdfioDictSetDate(info_dict, "CreationDate", time(NULL));
|
|
||||||
pdfioDictSetString(info_dict, "Producer", "pdfio/" PDFIO_VERSION);
|
|
||||||
|
|
||||||
if ((pdf->info_obj = pdfioFileCreateObj(pdf, info_dict)) == NULL)
|
|
||||||
goto error;
|
|
||||||
|
|
||||||
// Create random file ID values...
|
|
||||||
_pdfioCryptoMakeRandom(id_value, sizeof(id_value));
|
|
||||||
|
|
||||||
if ((pdf->id_array = pdfioArrayCreate(pdf)) != NULL)
|
|
||||||
{
|
|
||||||
pdfioArrayAppendBinary(pdf->id_array, id_value, sizeof(id_value));
|
|
||||||
pdfioArrayAppendBinary(pdf->id_array, id_value, sizeof(id_value));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return (pdf);
|
return (pdf);
|
||||||
|
|
||||||
// Common error handling code...
|
|
||||||
error:
|
|
||||||
|
|
||||||
pdfioFileClose(pdf);
|
|
||||||
|
|
||||||
unlink(buffer);
|
|
||||||
*buffer = '\0';
|
|
||||||
|
|
||||||
return (NULL);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -987,6 +698,19 @@ pdfioFileGetAuthor(pdfio_file_t *pdf) // I - PDF file
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// 'pdfioFileGetCatalog()' - Get the document catalog dictionary.
|
||||||
|
//
|
||||||
|
// @since PDFio 1.3@
|
||||||
|
//
|
||||||
|
|
||||||
|
pdfio_dict_t * // O - Catalog dictionary
|
||||||
|
pdfioFileGetCatalog(pdfio_file_t *pdf) // I - PDF file
|
||||||
|
{
|
||||||
|
return (pdf ? pdfioObjGetDict(pdf->root_obj) : NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// 'pdfioFileGetCreationDate()' - Get the creation date for a PDF file.
|
// 'pdfioFileGetCreationDate()' - Get the creation date for a PDF file.
|
||||||
//
|
//
|
||||||
@ -1176,13 +900,13 @@ pdfioFileGetVersion(
|
|||||||
// This function opens an existing PDF file. The "filename" argument specifies
|
// This function opens an existing PDF file. The "filename" argument specifies
|
||||||
// the name of the PDF file to create.
|
// the name of the PDF file to create.
|
||||||
//
|
//
|
||||||
// The "password_cb" and "password_data" arguments specify a password callback
|
// The "password_cb" and "password_cbdata" arguments specify a password callback
|
||||||
// and its data pointer for PDF files that use one of the standard Adobe
|
// and its data pointer for PDF files that use one of the standard Adobe
|
||||||
// "security" handlers. The callback returns a password string or `NULL` to
|
// "security" handlers. The callback returns a password string or `NULL` to
|
||||||
// cancel the open. If `NULL` is specified for the callback function and the
|
// cancel the open. If `NULL` is specified for the callback function and the
|
||||||
// PDF file requires a password, the open will always fail.
|
// PDF file requires a password, the open will always fail.
|
||||||
//
|
//
|
||||||
// The "error_cb" and "error_data" arguments specify an error handler callback
|
// The "error_cb" and "error_cbdata" arguments specify an error handler callback
|
||||||
// and its data pointer - if `NULL` the default error handler is used that
|
// and its data pointer - if `NULL` the default error handler is used that
|
||||||
// writes error messages to `stderr`.
|
// writes error messages to `stderr`.
|
||||||
//
|
//
|
||||||
@ -1191,9 +915,10 @@ pdfio_file_t * // O - PDF file
|
|||||||
pdfioFileOpen(
|
pdfioFileOpen(
|
||||||
const char *filename, // I - Filename
|
const char *filename, // I - Filename
|
||||||
pdfio_password_cb_t password_cb, // I - Password callback or `NULL` for none
|
pdfio_password_cb_t password_cb, // I - Password callback or `NULL` for none
|
||||||
void *password_data, // I - Password callback data, if any
|
void *password_cbdata,
|
||||||
|
// I - Password callback data, if any
|
||||||
pdfio_error_cb_t error_cb, // I - Error callback or `NULL` for default
|
pdfio_error_cb_t error_cb, // I - Error callback or `NULL` for default
|
||||||
void *error_data) // I - Error callback data, if any
|
void *error_cbdata) // I - Error callback data, if any
|
||||||
{
|
{
|
||||||
pdfio_file_t *pdf; // PDF file
|
pdfio_file_t *pdf; // PDF file
|
||||||
char line[1025], // Line from file
|
char line[1025], // Line from file
|
||||||
@ -1210,7 +935,7 @@ pdfioFileOpen(
|
|||||||
if (!error_cb)
|
if (!error_cb)
|
||||||
{
|
{
|
||||||
error_cb = _pdfioFileDefaultError;
|
error_cb = _pdfioFileDefaultError;
|
||||||
error_data = NULL;
|
error_cbdata = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Allocate a PDF file structure...
|
// Allocate a PDF file structure...
|
||||||
@ -1221,7 +946,7 @@ pdfioFileOpen(
|
|||||||
|
|
||||||
temp.filename = (char *)filename;
|
temp.filename = (char *)filename;
|
||||||
snprintf(message, sizeof(message), "Unable to allocate memory for PDF file - %s", strerror(errno));
|
snprintf(message, sizeof(message), "Unable to allocate memory for PDF file - %s", strerror(errno));
|
||||||
(error_cb)(&temp, message, error_data);
|
(error_cb)(&temp, message, error_cbdata);
|
||||||
return (NULL);
|
return (NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1229,7 +954,7 @@ pdfioFileOpen(
|
|||||||
pdf->filename = strdup(filename);
|
pdf->filename = strdup(filename);
|
||||||
pdf->mode = _PDFIO_MODE_READ;
|
pdf->mode = _PDFIO_MODE_READ;
|
||||||
pdf->error_cb = error_cb;
|
pdf->error_cb = error_cb;
|
||||||
pdf->error_data = error_data;
|
pdf->error_data = error_cbdata;
|
||||||
pdf->permissions = PDFIO_PERMISSION_ALL;
|
pdf->permissions = PDFIO_PERMISSION_ALL;
|
||||||
|
|
||||||
// Open the file...
|
// Open the file...
|
||||||
@ -1285,7 +1010,7 @@ pdfioFileOpen(
|
|||||||
|
|
||||||
xref_offset = (off_t)strtol(ptr + 9, NULL, 10);
|
xref_offset = (off_t)strtol(ptr + 9, NULL, 10);
|
||||||
|
|
||||||
if (!load_xref(pdf, xref_offset, password_cb, password_data))
|
if (!load_xref(pdf, xref_offset, password_cb, password_cbdata))
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
return (pdf);
|
return (pdf);
|
||||||
@ -1377,7 +1102,7 @@ pdfioFileSetPermissions(
|
|||||||
if (!pdf)
|
if (!pdf)
|
||||||
return (false);
|
return (false);
|
||||||
|
|
||||||
if (pdf->num_objs > 2) // First two objects are pages and info
|
if (pdf->num_objs > 3) // First three objects are pages, info, and root
|
||||||
{
|
{
|
||||||
_pdfioFileError(pdf, "You must call pdfioFileSetPermissions before adding any objects.");
|
_pdfioFileError(pdf, "You must call pdfioFileSetPermissions before adding any objects.");
|
||||||
return (false);
|
return (false);
|
||||||
@ -1539,6 +1264,142 @@ compare_objmaps(_pdfio_objmap_t *a, // I - First object map
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// 'create_common()' - Allocate and initialize a pdfio_file_t object for writing.
|
||||||
|
//
|
||||||
|
|
||||||
|
static pdfio_file_t * // O - New PDF file
|
||||||
|
create_common(
|
||||||
|
const char *filename, // I - Filename
|
||||||
|
int fd, // I - File descriptor, if any
|
||||||
|
pdfio_output_cb_t output_cb, // I - Output callback function, if any
|
||||||
|
void *output_cbdata, // I - Output callback data, if any
|
||||||
|
const char *version, // I - PDF version
|
||||||
|
pdfio_rect_t *media_box, // I - Media box or `NULL` for default
|
||||||
|
pdfio_rect_t *crop_box, // I - Crop box of `NULL` for default
|
||||||
|
pdfio_error_cb_t error_cb, // I - Error callback function
|
||||||
|
void *error_cbdata) // I - Error callback data
|
||||||
|
{
|
||||||
|
pdfio_file_t *pdf; // New PDF file
|
||||||
|
pdfio_dict_t *dict; // Dictionary
|
||||||
|
unsigned char id_value[16]; // File ID value
|
||||||
|
|
||||||
|
|
||||||
|
// Range check input...
|
||||||
|
if (!filename || (fd < 0 && !output_cb))
|
||||||
|
return (NULL);
|
||||||
|
|
||||||
|
if (!version)
|
||||||
|
version = "2.0";
|
||||||
|
|
||||||
|
if (!error_cb)
|
||||||
|
{
|
||||||
|
error_cb = _pdfioFileDefaultError;
|
||||||
|
error_cbdata = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Allocate a PDF file structure...
|
||||||
|
if ((pdf = (pdfio_file_t *)calloc(1, sizeof(pdfio_file_t))) == NULL)
|
||||||
|
{
|
||||||
|
pdfio_file_t temp; // Dummy file
|
||||||
|
char message[8192]; // Message string
|
||||||
|
|
||||||
|
temp.filename = (char *)filename;
|
||||||
|
snprintf(message, sizeof(message), "Unable to allocate memory for PDF file: %s", strerror(errno));
|
||||||
|
(error_cb)(&temp, message, error_cbdata);
|
||||||
|
|
||||||
|
return (NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Initialize PDF object...
|
||||||
|
pdf->loc = get_lconv();
|
||||||
|
pdf->fd = fd;
|
||||||
|
pdf->output_cb = output_cb;
|
||||||
|
pdf->output_ctx = output_cbdata;
|
||||||
|
pdf->filename = strdup(filename);
|
||||||
|
pdf->version = strdup(version);
|
||||||
|
pdf->mode = _PDFIO_MODE_WRITE;
|
||||||
|
pdf->error_cb = error_cb;
|
||||||
|
pdf->error_data = error_cbdata;
|
||||||
|
pdf->permissions = PDFIO_PERMISSION_ALL;
|
||||||
|
pdf->bufptr = pdf->buffer;
|
||||||
|
pdf->bufend = pdf->buffer + sizeof(pdf->buffer);
|
||||||
|
|
||||||
|
if (media_box)
|
||||||
|
{
|
||||||
|
pdf->media_box = *media_box;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Default to "universal" size (intersection of A4 and US Letter)
|
||||||
|
pdf->media_box.x2 = 210.0 * 72.0f / 25.4f;
|
||||||
|
pdf->media_box.y2 = 11.0f * 72.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (crop_box)
|
||||||
|
{
|
||||||
|
pdf->crop_box = *crop_box;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Default to "universal" size (intersection of A4 and US Letter)
|
||||||
|
pdf->crop_box.x2 = 210.0 * 72.0f / 25.4f;
|
||||||
|
pdf->crop_box.y2 = 11.0f * 72.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Write a standard PDF header...
|
||||||
|
if (!_pdfioFilePrintf(pdf, "%%PDF-%s\n%%\342\343\317\323\n", version))
|
||||||
|
goto error;
|
||||||
|
|
||||||
|
// Create the pages object...
|
||||||
|
if ((dict = pdfioDictCreate(pdf)) == NULL)
|
||||||
|
goto error;
|
||||||
|
|
||||||
|
pdfioDictSetName(dict, "Type", "Pages");
|
||||||
|
|
||||||
|
if ((pdf->pages_obj = pdfioFileCreateObj(pdf, dict)) == NULL)
|
||||||
|
goto error;
|
||||||
|
|
||||||
|
// Create the info object...
|
||||||
|
if ((dict = pdfioDictCreate(pdf)) == NULL)
|
||||||
|
goto error;
|
||||||
|
|
||||||
|
pdfioDictSetDate(dict, "CreationDate", time(NULL));
|
||||||
|
pdfioDictSetString(dict, "Producer", "pdfio/" PDFIO_VERSION);
|
||||||
|
|
||||||
|
if ((pdf->info_obj = pdfioFileCreateObj(pdf, dict)) == NULL)
|
||||||
|
goto error;
|
||||||
|
|
||||||
|
// Create the root object...
|
||||||
|
if ((dict = pdfioDictCreate(pdf)) == NULL)
|
||||||
|
goto error;
|
||||||
|
|
||||||
|
pdfioDictSetName(dict, "Type", "Catalog");
|
||||||
|
pdfioDictSetObj(dict, "Pages", pdf->pages_obj);
|
||||||
|
|
||||||
|
if ((pdf->root_obj = pdfioFileCreateObj(pdf, dict)) == NULL)
|
||||||
|
goto error;
|
||||||
|
|
||||||
|
// Create random file ID values...
|
||||||
|
_pdfioCryptoMakeRandom(id_value, sizeof(id_value));
|
||||||
|
|
||||||
|
if ((pdf->id_array = pdfioArrayCreate(pdf)) != NULL)
|
||||||
|
{
|
||||||
|
pdfioArrayAppendBinary(pdf->id_array, id_value, sizeof(id_value));
|
||||||
|
pdfioArrayAppendBinary(pdf->id_array, id_value, sizeof(id_value));
|
||||||
|
}
|
||||||
|
|
||||||
|
return (pdf);
|
||||||
|
|
||||||
|
// Common error handling code...
|
||||||
|
error:
|
||||||
|
|
||||||
|
pdfioFileClose(pdf);
|
||||||
|
|
||||||
|
return (NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// 'get_info_string()' - Get a string value from the Info dictionary.
|
// 'get_info_string()' - Get a string value from the Info dictionary.
|
||||||
//
|
//
|
||||||
@ -2248,30 +2109,6 @@ load_xref(
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//
|
|
||||||
// 'write_catalog()' - Write the PDF root object/catalog.
|
|
||||||
//
|
|
||||||
|
|
||||||
static bool // O - `true` on success, `false` on failure
|
|
||||||
write_catalog(pdfio_file_t *pdf) // I - PDF file
|
|
||||||
{
|
|
||||||
pdfio_dict_t *dict; // Dictionary for catalog...
|
|
||||||
|
|
||||||
|
|
||||||
if ((dict = pdfioDictCreate(pdf)) == NULL)
|
|
||||||
return (false);
|
|
||||||
|
|
||||||
pdfioDictSetName(dict, "Type", "Catalog");
|
|
||||||
pdfioDictSetObj(dict, "Pages", pdf->pages_obj);
|
|
||||||
// TODO: Add support for all of the root object dictionary keys
|
|
||||||
|
|
||||||
if ((pdf->root_obj = pdfioFileCreateObj(pdf, dict)) == NULL)
|
|
||||||
return (false);
|
|
||||||
else
|
|
||||||
return (pdfioObjClose(pdf->root_obj));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// 'write_pages()' - Write the PDF pages objects.
|
// 'write_pages()' - Write the PDF pages objects.
|
||||||
//
|
//
|
||||||
|
1
pdfio.h
1
pdfio.h
@ -191,6 +191,7 @@ extern pdfio_obj_t *pdfioFileCreateStringObj(pdfio_file_t *pdf, const char *s) _
|
|||||||
extern pdfio_file_t *pdfioFileCreateTemporary(char *buffer, size_t bufsize, const char *version, pdfio_rect_t *media_box, pdfio_rect_t *crop_box, pdfio_error_cb_t error_cb, void *error_data) _PDFIO_PUBLIC;
|
extern pdfio_file_t *pdfioFileCreateTemporary(char *buffer, size_t bufsize, const char *version, pdfio_rect_t *media_box, pdfio_rect_t *crop_box, pdfio_error_cb_t error_cb, void *error_data) _PDFIO_PUBLIC;
|
||||||
extern pdfio_obj_t *pdfioFileFindObj(pdfio_file_t *pdf, size_t number) _PDFIO_PUBLIC;
|
extern pdfio_obj_t *pdfioFileFindObj(pdfio_file_t *pdf, size_t number) _PDFIO_PUBLIC;
|
||||||
extern const char *pdfioFileGetAuthor(pdfio_file_t *pdf) _PDFIO_PUBLIC;
|
extern const char *pdfioFileGetAuthor(pdfio_file_t *pdf) _PDFIO_PUBLIC;
|
||||||
|
extern pdfio_dict_t *pdfioFileGetCatalog(pdfio_file_t *pdf) _PDFIO_PUBLIC;
|
||||||
extern time_t pdfioFileGetCreationDate(pdfio_file_t *pdf) _PDFIO_PUBLIC;
|
extern time_t pdfioFileGetCreationDate(pdfio_file_t *pdf) _PDFIO_PUBLIC;
|
||||||
extern const char *pdfioFileGetCreator(pdfio_file_t *pdf) _PDFIO_PUBLIC;
|
extern const char *pdfioFileGetCreator(pdfio_file_t *pdf) _PDFIO_PUBLIC;
|
||||||
extern pdfio_array_t *pdfioFileGetID(pdfio_file_t *pdf) _PDFIO_PUBLIC;
|
extern pdfio_array_t *pdfioFileGetID(pdfio_file_t *pdf) _PDFIO_PUBLIC;
|
||||||
|
19
testpdfio.c
19
testpdfio.c
@ -48,7 +48,7 @@ static int write_images_test(pdfio_file_t *pdf, int number, pdfio_obj_t *font);
|
|||||||
static int write_jpeg_test(pdfio_file_t *pdf, const char *title, int number, pdfio_obj_t *font, pdfio_obj_t *image);
|
static int write_jpeg_test(pdfio_file_t *pdf, const char *title, int number, pdfio_obj_t *font, pdfio_obj_t *image);
|
||||||
static int write_png_test(pdfio_file_t *pdf, int number, pdfio_obj_t *font);
|
static int write_png_test(pdfio_file_t *pdf, int number, pdfio_obj_t *font);
|
||||||
static int write_text_test(pdfio_file_t *pdf, int first_page, pdfio_obj_t *font, const char *filename);
|
static int write_text_test(pdfio_file_t *pdf, int first_page, pdfio_obj_t *font, const char *filename);
|
||||||
static int write_unit_file(pdfio_file_t *inpdf, pdfio_file_t *outpdf, size_t *num_pages, size_t *first_image);
|
static int write_unit_file(pdfio_file_t *inpdf, const char *outname, pdfio_file_t *outpdf, size_t *num_pages, size_t *first_image);
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
@ -1044,7 +1044,7 @@ do_unit_tests(void)
|
|||||||
else
|
else
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
if (write_unit_file(inpdf, outpdf, &num_pages, &first_image))
|
if (write_unit_file(inpdf, "testpdfio-out.pdf", outpdf, &num_pages, &first_image))
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
if (read_unit_file("testpdfio-out.pdf", num_pages, first_image, false))
|
if (read_unit_file("testpdfio-out.pdf", num_pages, first_image, false))
|
||||||
@ -1063,7 +1063,7 @@ do_unit_tests(void)
|
|||||||
else
|
else
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
if (write_unit_file(inpdf, outpdf, &num_pages, &first_image))
|
if (write_unit_file(inpdf, "testpdfio-out2.pdf", outpdf, &num_pages, &first_image))
|
||||||
goto fail;
|
goto fail;
|
||||||
|
|
||||||
close(outfd);
|
close(outfd);
|
||||||
@ -1084,7 +1084,7 @@ do_unit_tests(void)
|
|||||||
else
|
else
|
||||||
return (1);
|
return (1);
|
||||||
|
|
||||||
if (write_unit_file(inpdf, outpdf, &num_pages, &first_image))
|
if (write_unit_file(inpdf, "testpdfio-rc4.pdf", outpdf, &num_pages, &first_image))
|
||||||
return (1);
|
return (1);
|
||||||
|
|
||||||
if (read_unit_file("testpdfio-rc4.pdf", num_pages, first_image, false))
|
if (read_unit_file("testpdfio-rc4.pdf", num_pages, first_image, false))
|
||||||
@ -1103,7 +1103,7 @@ do_unit_tests(void)
|
|||||||
else
|
else
|
||||||
return (1);
|
return (1);
|
||||||
|
|
||||||
if (write_unit_file(inpdf, outpdf, &num_pages, &first_image))
|
if (write_unit_file(inpdf, "testpdfio-rc4p.pdf", outpdf, &num_pages, &first_image))
|
||||||
return (1);
|
return (1);
|
||||||
|
|
||||||
if (read_unit_file("testpdfio-rc4p.pdf", num_pages, first_image, false))
|
if (read_unit_file("testpdfio-rc4p.pdf", num_pages, first_image, false))
|
||||||
@ -1121,7 +1121,7 @@ do_unit_tests(void)
|
|||||||
else
|
else
|
||||||
return (1);
|
return (1);
|
||||||
|
|
||||||
if (write_unit_file(inpdf, outpdf, &num_pages, &first_image))
|
if (write_unit_file(inpdf, "testpdfio-aes.pdf", outpdf, &num_pages, &first_image))
|
||||||
return (1);
|
return (1);
|
||||||
|
|
||||||
if (read_unit_file("testpdfio-aes.pdf", num_pages, first_image, false))
|
if (read_unit_file("testpdfio-aes.pdf", num_pages, first_image, false))
|
||||||
@ -1139,7 +1139,7 @@ do_unit_tests(void)
|
|||||||
else
|
else
|
||||||
return (1);
|
return (1);
|
||||||
|
|
||||||
if (write_unit_file(inpdf, outpdf, &num_pages, &first_image))
|
if (write_unit_file(inpdf, "testpdfio-aesp.pdf", outpdf, &num_pages, &first_image))
|
||||||
return (1);
|
return (1);
|
||||||
|
|
||||||
if (read_unit_file("testpdfio-aesp.pdf", num_pages, first_image, false))
|
if (read_unit_file("testpdfio-aesp.pdf", num_pages, first_image, false))
|
||||||
@ -1151,7 +1151,7 @@ do_unit_tests(void)
|
|||||||
else
|
else
|
||||||
return (1);
|
return (1);
|
||||||
|
|
||||||
if (write_unit_file(inpdf, outpdf, &num_pages, &first_image))
|
if (write_unit_file(inpdf, "<temporary>", outpdf, &num_pages, &first_image))
|
||||||
return (1);
|
return (1);
|
||||||
|
|
||||||
if (read_unit_file(temppdf, num_pages, first_image, false))
|
if (read_unit_file(temppdf, num_pages, first_image, false))
|
||||||
@ -3246,6 +3246,7 @@ write_text_test(pdfio_file_t *pdf, // I - PDF file
|
|||||||
static int // O - Exit status
|
static int // O - Exit status
|
||||||
write_unit_file(
|
write_unit_file(
|
||||||
pdfio_file_t *inpdf, // I - Input PDF file
|
pdfio_file_t *inpdf, // I - Input PDF file
|
||||||
|
const char *outname, // I - Output PDF file name
|
||||||
pdfio_file_t *outpdf, // I - Output PDF file
|
pdfio_file_t *outpdf, // I - Output PDF file
|
||||||
size_t *num_pages, // O - Number of pages
|
size_t *num_pages, // O - Number of pages
|
||||||
size_t *first_image) // O - First image object
|
size_t *first_image) // O - First image object
|
||||||
@ -3440,7 +3441,7 @@ write_unit_file(
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Close the new PDF file...
|
// Close the new PDF file...
|
||||||
fputs("pdfioFileClose(...): ", stdout);
|
printf("pdfioFileClose(\"%s\"): ", outname);
|
||||||
if (pdfioFileClose(outpdf))
|
if (pdfioFileClose(outpdf))
|
||||||
puts("PASS");
|
puts("PASS");
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user