// // Test program for PDFio. // // Copyright © 2021 by Michael R Sweet. // // Licensed under Apache License v2.0. See the file "LICENSE" for more // information. // // // Include necessary headers... // #include "pdfio-private.h" #include "pdfio-content.h" #include // // Local functions... // static int do_test_file(const char *filename); static int do_unit_tests(void); static bool error_cb(pdfio_file_t *pdf, const char *message, bool *error); static ssize_t token_consume_cb(const char **s, size_t bytes); static ssize_t token_peek_cb(const char **s, char *buffer, size_t bytes); static int write_color_patch(pdfio_stream_t *st, bool device); static int write_color_test(pdfio_file_t *pdf, int number, pdfio_obj_t *font); static int write_page(pdfio_file_t *pdf, int number, pdfio_obj_t *font, pdfio_obj_t *image); static int write_text(pdfio_file_t *pdf, int first_page, pdfio_obj_t *font, const char *filename); // // 'main()' - Main entry for test program. // int // O - Exit status main(int argc, // I - Number of command-line arguments char *argv[]) // I - Command-line arguments { if (argc > 1) { int i; // Looping var for (i = 1; i < argc; i ++) { if (do_test_file(argv[i])) return (1); } } else { do_unit_tests(); } return (0); } // // 'do_test_file()' - Try loading a PDF file and listing pages and objects. // static int // O - Exit status do_test_file(const char *filename) // I - PDF filename { bool error = false; // Have we shown an error yet? pdfio_file_t *pdf; // PDF file size_t n, // Object/page index num_objs, // Number of objects num_pages; // Number of pages pdfio_obj_t *obj; // Object pdfio_dict_t *dict; // Object dictionary const char *type; // Object type // Try opening the file... printf("pdfioFileOpen(\"%s\", ...): ", filename); if ((pdf = pdfioFileOpen(filename, (pdfio_error_cb_t)error_cb, &error)) != NULL) { puts("PASS"); // Show basic stats... num_objs = pdfioFileGetNumObjects(pdf); num_pages = pdfioFileGetNumPages(pdf); printf(" PDF %s, %d pages, %d objects.\n", pdfioFileGetVersion(pdf), (int)num_pages, (int)num_objs); // Show a summary of each page... for (n = 0; n < num_pages; n ++) { if ((obj = pdfioFileGetPage(pdf, n)) == NULL) { printf("%s: Unable to get page #%d.\n", filename, (int)n + 1); } else { pdfio_rect_t media_box; // MediaBox value memset(&media_box, 0, sizeof(media_box)); dict = pdfioObjGetDict(obj); if (!pdfioDictGetRect(dict, "MediaBox", &media_box)) { if ((obj = pdfioDictGetObject(dict, "Parent")) != NULL) { dict = pdfioObjGetDict(obj); pdfioDictGetRect(dict, "MediaBox", &media_box); } } printf(" Page #%d is %gx%g.\n", (int)n + 1, media_box.x2, media_box.y2); } } // Show the associated value with each object... for (n = 0; n < num_objs; n ++) { if ((obj = pdfioFileGetObject(pdf, n)) == NULL) { printf(" Unable to get object #%d.\n", (int)n); } else { dict = pdfioObjGetDict(obj); printf(" %u %u obj dict=%p(%lu pairs)\n", (unsigned)pdfioObjGetNumber(obj), (unsigned)pdfioObjGetGeneration(obj), dict, dict ? (unsigned long)dict->num_pairs : 0UL); fputs(" ", stdout); _pdfioValueDebug(&obj->value, stdout); putchar('\n'); } } // Close the file and return success... pdfioFileClose(pdf); return (0); } else { // Error message will already be displayed so just indicate failure... return (1); } } // // 'do_unit_tests()' - Do unit tests. // static int // O - Exit status do_unit_tests(void) { int i; // Looping var char filename[256]; // PDF filename pdfio_file_t *pdf, // Test PDF file *outpdf; // Output PDF file bool error = false; // Error callback data _pdfio_token_t tb; // Token buffer const char *s; // String buffer _pdfio_value_t value; // Value pdfio_obj_t *color_jpg, // color.jpg image *gray_jpg, // gray.jpg image *helvetica, // Helvetica font *page; // Page from test PDF file static const char *complex_dict = // Complex dictionary value "<>/ExtGState<>/Font<<" "/TT0 21384 0 R/TT1 21390 0 R/TT2 21423 0 R/TT3 21403 0 R/TT4 21397 0 R>>" "/ProcSet[/PDF/Text/ImageC]/Properties<>" "/XObject<>>>/Rotate 0/StructParents 2105" "/Tabs/S/Type/Page>>"; setbuf(stdout, NULL); // First open the test PDF file... fputs("pdfioFileOpen(\"testfiles/testpdfio.pdf\"): ", stdout); if ((pdf = pdfioFileOpen("testfiles/testpdfio.pdf", (pdfio_error_cb_t)error_cb, &error)) != NULL) puts("PASS"); else return (1); // TODO: Test for known values in this test file. // Test the value parsers for edge cases... fputs("_pdfioValueRead(complex_dict): ", stdout); s = complex_dict; _pdfioTokenInit(&tb, pdf, (_pdfio_tconsume_cb_t)token_consume_cb, (_pdfio_tpeek_cb_t)token_peek_cb, &s); if (_pdfioValueRead(pdf, &tb, &value)) { // TODO: Check value... puts("PASS"); } else return (1); // Create a new PDF file... fputs("pdfioFileCreate(\"testpdfio-out.pdf\", ...): ", stdout); if ((outpdf = pdfioFileCreate("testpdfio-out.pdf", NULL, NULL, NULL, (pdfio_error_cb_t)error_cb, &error)) != NULL) puts("PASS"); else return (1); // Create some image objects... fputs("pdfioFileCreateImageObject(\"testfiles/color.jpg\"): ", stdout); if ((color_jpg = pdfioFileCreateImageObject(outpdf, "testfiles/color.jpg", true)) != NULL) puts("PASS"); else return (1); fputs("pdfioFileCreateImageObject(\"testfiles/gray.jpg\"): ", stdout); if ((gray_jpg = pdfioFileCreateImageObject(outpdf, "testfiles/gray.jpg", true)) != NULL) puts("PASS"); else return (1); // Create fonts... fputs("pdfioFileCreateBaseFontObject(\"Helvetica\"): ", stdout); if ((helvetica = pdfioFileCreateBaseFontObject(outpdf, "Helvetica")) != NULL) puts("PASS"); else return (1); // Copy the first page from the test PDF file... fputs("pdfioFileGetPage(0): ", stdout); if ((page = pdfioFileGetPage(pdf, 0)) != NULL) puts("PASS"); else return (1); fputs("pdfioPageCopy(first page): ", stdout); if (pdfioPageCopy(outpdf, page)) puts("PASS"); else return (1); // Write a page with a color image... if (write_page(outpdf, 2, helvetica, color_jpg)) return (1); // Copy the third page from the test PDF file... fputs("pdfioFileGetPage(2): ", stdout); if ((page = pdfioFileGetPage(pdf, 2)) != NULL) puts("PASS"); else return (1); fputs("pdfioPageCopy(third page): ", stdout); if (pdfioPageCopy(outpdf, page)) puts("PASS"); else return (1); // Write a page with a grayscale image... if (write_page(outpdf, 4, helvetica, gray_jpg)) return (1); // Write a page that tests multiple color spaces... if (write_color_test(outpdf, 5, helvetica)) return (1); // Print this text file... if (write_text(outpdf, 6, helvetica, "README.md")) return (1); // Close the test PDF file... fputs("pdfioFileClose(\"testfiles/testpdfio.pdf\": ", stdout); if (pdfioFileClose(pdf)) puts("PASS"); else return (1); // Close the new PDF file... fputs("pdfioFileClose(\"testpdfio-out.pdf\": ", stdout); if (pdfioFileClose(outpdf)) puts("PASS"); else return (1); return (0); } // // 'error_cb()' - Display an error message during a unit test. // static bool // O - `true` to stop, `false` to continue error_cb(pdfio_file_t *pdf, // I - PDF file const char *message, // I - Error message bool *error) // IO - Have we displayed an error? { (void)pdf; if (!*error) { // First error, so show a "FAIL" indicator *error = true; puts("FAIL"); } // Indent error messages... printf(" %s\n", message); // Continue to catch more errors... return (false); } // // 'token_consume_cb()' - Consume bytes from a test string. // static ssize_t // O - Number of bytes consumed token_consume_cb(const char **s, // IO - Test string size_t bytes) // I - Bytes to consume { size_t len = strlen(*s); // Number of bytes remaining // "Consume" bytes by incrementing the string pointer, limiting to the // remaining length... if (bytes > len) bytes = len; *s += bytes; return ((ssize_t)bytes); } // // 'token_peek_cb()' - Peek bytes from a test string. // static ssize_t // O - Number of bytes peeked token_peek_cb(const char **s, // IO - Test string char *buffer, // I - Buffer size_t bytes) // I - Bytes to peek { size_t len = strlen(*s); // Number of bytes remaining // Copy bytes from the test string as possible... if (bytes > len) bytes = len; if (bytes > 0) memcpy(buffer, *s, bytes); return ((ssize_t)bytes); } // // 'write_color_patch()' - Write a color patch... // static int // O - 1 on failure, 0 on success write_color_patch(pdfio_stream_t *st, // I - Content stream bool device)// I - Use device color? { int col, // Current column row; // Current row double x, y, // Relative position r, // Radius hue, // Hue angle sat, // Saturation cc, // Computed color red, // Red value green, // Green value blue; // Blue value // Draw an 11x11 patch... for (col = 0; col < 21; col ++) { for (row = 0; row < 21; row ++) { // Compute color in patch... x = 0.1 * (col - 10); y = 0.1 * (row - 10); r = sqrt(x * x + y * y); if (r == 0.0) { red = green = blue = 1.0; } else { sat = pow(r, 1.5); x /= r; y /= r; hue = 3.0 * atan2(y, x) / M_PI; if (hue < 0.0) hue += 6.0; cc = sat * (1.0 - fabs(fmod(hue, 2.0) - 1.0)) + 1.0 - sat; if (hue < 1.0) { red = 1.0; green = cc; blue = 1.0 - sat; } else if (hue < 2.0) { red = cc; green = 1.0; blue = 1.0 - sat; } else if (hue < 3.0) { red = 1.0 - sat; green = 1.0; blue = cc; } else if (hue < 4.0) { red = 1.0 - sat; green = cc; blue = 1.0; } else if (hue < 5.0) { red = cc; green = 1.0 - sat; blue = 1.0; } else { red = 1.0; green = 1.0 - sat; blue = cc; } } // Draw it... if (device) { // Use device CMYK color instead of a calibrated RGB space... double cyan = 1.0 - red; // Cyan color double magenta = 1.0 - green; // Magenta color double yellow = 1.0 - blue; // Yellow color double black = cyan; // Black color if (black > magenta) black = magenta; if (black > yellow) black = yellow; cyan -= black; magenta -= black; yellow -= black; printf("pdfioContentSetFillColorDeviceCMYK(c=%g, m=%g, y=%g, k=%g): ", cyan, magenta, yellow, black); if (pdfioContentSetFillColorDeviceCMYK(st, cyan, magenta, yellow, black)) puts("PASS"); else return (1); } else { // Use calibrate RGB space... printf("pdfioContentSetFillColorRGB(r=%g, g=%g, b=%g): ", red, green, blue); if (pdfioContentSetFillColorRGB(st, red, green, blue)) puts("PASS"); else return (1); } printf("pdfioContentPathRect(x=%g, y=%g, w=%g, h=%g): ", col * 9.0, row * 9.0, 9.0, 9.0); if (pdfioContentPathRect(st, col * 9.0, row * 9.0, 9.0, 9.0)) puts("PASS"); else return (1); fputs("pdfioContentFill(even_odd=false): ", stdout); if (pdfioContentFill(st, false)) puts("PASS"); else return (1); } } return (0); } // // 'write_color_test()' - Write a color test page... // static int // O - 1 on failure, 0 on success write_color_test(pdfio_file_t *pdf, // I - PDF file int number, // I - Page number pdfio_obj_t *font) // I - Text font { pdfio_dict_t *dict; // Page dictionary pdfio_stream_t *st; // Page contents stream fputs("pdfioDictCreate: ", stdout); if ((dict = pdfioDictCreate(pdf)) != NULL) puts("PASS"); else return (1); fputs("pdfioPageDictAddCalibratedColorSpace(AdobeRGB): ", stdout); if (pdfioPageDictAddCalibratedColorSpace(dict, "AdobeRGB", 3, pdfioAdobeRGBGamma, pdfioAdobeRGBMatrix, pdfioAdobeRGBWhitePoint)) puts("PASS"); else return (1); fputs("pdfioPageDictAddCalibratedColorSpace(DisplayP3): ", stdout); if (pdfioPageDictAddCalibratedColorSpace(dict, "DisplayP3", 3, pdfioDisplayP3Gamma, pdfioDisplayP3Matrix, pdfioDisplayP3WhitePoint)) puts("PASS"); else return (1); fputs("pdfioPageDictAddCalibratedColorSpace(sRGB): ", stdout); if (pdfioPageDictAddCalibratedColorSpace(dict, "sRGB", 3, pdfioSRGBGamma, pdfioSRGBMatrix, pdfioSRGBWhitePoint)) puts("PASS"); else return (1); fputs("pdfioPageDictAddFont(F1): ", stdout); if (pdfioPageDictAddFont(dict, "F1", font)) puts("PASS"); else return (1); printf("pdfioFileCreatePage(%d): ", number); if ((st = pdfioFileCreatePage(pdf, dict)) != NULL) puts("PASS"); else return (1); fputs("pdfioContentSetFillColorDeviceGray(0.0): ", stdout); if (pdfioContentSetFillColorDeviceGray(st, 0.0)) puts("PASS"); else return (1); fputs("pdfioContentTextBegin(): ", stdout); if (pdfioContentTextBegin(st)) puts("PASS"); else return (1); fputs("pdfioContentSetTextFont(\"F1\", 12.0): ", stdout); if (pdfioContentSetTextFont(st, "F1", 12.0)) puts("PASS"); else return (1); fputs("pdfioContentTextMoveTo(550.0, 36.0): ", stdout); if (pdfioContentTextMoveTo(st, 550.0, 36.0)) puts("PASS"); else return (1); printf("pdfioContentTextShowf(\"%d\"): ", number); if (pdfioContentTextShowf(st, "%d", number)) puts("PASS"); else return (1); fputs("pdfioContentTextEnd(): ", stdout); if (pdfioContentTextEnd(st)) puts("PASS"); else return (1); fputs("pdfioContentTextBegin(): ", stdout); if (pdfioContentTextBegin(st)) puts("PASS"); else return (1); fputs("pdfioContentSetTextFont(\"F1\", 18.0): ", stdout); if (pdfioContentSetTextFont(st, "F1", 18.0)) puts("PASS"); else return (1); fputs("pdfioContentTextMoveTo(82, 360): ", stdout); if (pdfioContentTextMoveTo(st, 82, 360)) puts("PASS"); else return (1); fputs("pdfioContentTextShow(\"AdobeRGB\"): ", stdout); if (pdfioContentTextShow(st, "AdobeRGB")) puts("PASS"); else return (1); fputs("pdfioContentTextMoveTo(234, 0): ", stdout); if (pdfioContentTextMoveTo(st, 234, 0)) puts("PASS"); else return (1); fputs("pdfioContentTextShow(\"DisplayP3\"): ", stdout); if (pdfioContentTextShow(st, "DisplayP3")) puts("PASS"); else return (1); fputs("pdfioContentTextMoveTo(-234, 252): ", stdout); if (pdfioContentTextMoveTo(st, -234, 252)) puts("PASS"); else return (1); fputs("pdfioContentTextShow(\"sRGB\"): ", stdout); if (pdfioContentTextShow(st, "sRGB")) puts("PASS"); else return (1); fputs("pdfioContentTextMoveTo(234, 0): ", stdout); if (pdfioContentTextMoveTo(st, 234, 0)) puts("PASS"); else return (1); fputs("pdfioContentTextShow(\"DeviceCMYK\"): ", stdout); if (pdfioContentTextShow(st, "DeviceCMYK")) puts("PASS"); else return (1); fputs("pdfioContentTextEnd(): ", stdout); if (pdfioContentTextEnd(st)) puts("PASS"); else return (1); fputs("pdfioContentSave(): ", stdout); if (pdfioContentSave(st)) puts("PASS"); else return (1); fputs("pdfioContentSetFillColorSpace(AdobeRGB): ", stdout); if (pdfioContentSetFillColorSpace(st, "AdobeRGB")) puts("PASS"); else return (1); fputs("pdfioContentMatrixTranslate(82, 162): ", stdout); if (pdfioContentMatrixTranslate(st, 82, 162)) puts("PASS"); else return (1); if (write_color_patch(st, false)) return (1); fputs("pdfioContentRestore(): ", stdout); if (pdfioContentRestore(st)) puts("PASS"); else return (1); fputs("pdfioContentSave(): ", stdout); if (pdfioContentSave(st)) puts("PASS"); else return (1); fputs("pdfioContentSetFillColorSpace(DisplayP3): ", stdout); if (pdfioContentSetFillColorSpace(st, "DisplayP3")) puts("PASS"); else return (1); fputs("pdfioContentMatrixTranslate(316, 162): ", stdout); if (pdfioContentMatrixTranslate(st, 316, 162)) puts("PASS"); else return (1); if (write_color_patch(st, false)) return (1); fputs("pdfioContentRestore(): ", stdout); if (pdfioContentRestore(st)) puts("PASS"); else return (1); fputs("pdfioContentSave(): ", stdout); if (pdfioContentSave(st)) puts("PASS"); else return (1); fputs("pdfioContentSetFillColorSpace(sRGB): ", stdout); if (pdfioContentSetFillColorSpace(st, "sRGB")) puts("PASS"); else return (1); fputs("pdfioContentMatrixTranslate(82, 414): ", stdout); if (pdfioContentMatrixTranslate(st, 82, 414)) puts("PASS"); else return (1); if (write_color_patch(st, false)) return (1); fputs("pdfioContentRestore(): ", stdout); if (pdfioContentRestore(st)) puts("PASS"); else return (1); fputs("pdfioContentSave(): ", stdout); if (pdfioContentSave(st)) puts("PASS"); else return (1); fputs("pdfioContentMatrixTranslate(316, 414): ", stdout); if (pdfioContentMatrixTranslate(st, 316, 414)) puts("PASS"); else return (1); if (write_color_patch(st, true)) return (1); fputs("pdfioContentRestore(): ", stdout); if (pdfioContentRestore(st)) puts("PASS"); else return (1); fputs("pdfioStreamClose: ", stdout); if (pdfioStreamClose(st)) puts("PASS"); else return (1); return (0); } // // 'write_page()' - Write a page to a PDF file. // static int // O - 1 on failure, 0 on success write_page(pdfio_file_t *pdf, // I - PDF file int number, // I - Page number pdfio_obj_t *font, // I - Text font pdfio_obj_t *image) // I - Image to draw { pdfio_dict_t *dict; // Page dictionary pdfio_stream_t *st; // Page contents stream double width, // Width of image height; // Height of image double swidth, // Scaled width sheight, // Scaled height tx, // X offset ty; // Y offset fputs("pdfioDictCreate: ", stdout); if ((dict = pdfioDictCreate(pdf)) != NULL) puts("PASS"); else return (1); fputs("pdfioPageDictAddImage: ", stdout); if (pdfioPageDictAddImage(dict, "IM1", image)) puts("PASS"); else return (1); fputs("pdfioPageDictAddFont(F1): ", stdout); if (pdfioPageDictAddFont(dict, "F1", font)) puts("PASS"); else return (1); printf("pdfioFileCreatePage(%d): ", number); if ((st = pdfioFileCreatePage(pdf, dict)) != NULL) puts("PASS"); else return (1); fputs("pdfioStreamPuts(...): ", stdout); if (pdfioStreamPuts(st, "1 0 0 RG 0 g 5 w\n" "54 54 487 688 re 90 90 415 612 re B*\n")) puts("PASS"); else return (1); fputs("pdfioContentSetFillColorDeviceGray(0.0): ", stdout); if (pdfioContentSetFillColorDeviceGray(st, 0.0)) puts("PASS"); else return (1); fputs("pdfioContentTextBegin(): ", stdout); if (pdfioContentTextBegin(st)) puts("PASS"); else return (1); fputs("pdfioContentSetTextFont(\"F1\", 12.0): ", stdout); if (pdfioContentSetTextFont(st, "F1", 12.0)) puts("PASS"); else return (1); fputs("pdfioContentTextMoveTo(550.0, 36.0): ", stdout); if (pdfioContentTextMoveTo(st, 550.0, 36.0)) puts("PASS"); else return (1); printf("pdfioContentTextShowf(\"%d\"): ", number); if (pdfioContentTextShowf(st, "%d", number)) puts("PASS"); else return (1); fputs("pdfioContentTextEnd(): ", stdout); if (pdfioContentTextEnd(st)) puts("PASS"); else return (1); fputs("pdfioContentSave(): ", stdout); if (pdfioContentSave(st)) puts("PASS"); else return (1); fputs("pdfioImageGetWidth(): ", stdout); if ((width = pdfioImageGetWidth(image)) > 0.0) puts("PASS"); else return (1); fputs("pdfioImageGetHeight(): ", stdout); if ((height = pdfioImageGetHeight(image)) > 0.0) puts("PASS"); else return (1); swidth = 400.0; sheight = swidth * height / width; if (sheight > 600.0) { sheight = 600.0; swidth = sheight * width / height; } tx = 0.5 * (595.28 - swidth); ty = 0.5 * (792 - sheight); printf("pdfioContentDrawImage(\"IM1\", x=%g, y=%g, w=%g, h=%g): ", tx, ty, swidth, sheight); if (pdfioContentDrawImage(st, "IM1", tx, ty, swidth, sheight)) puts("PASS"); else return (1); fputs("pdfioContentRestore(): ", stdout); if (pdfioContentRestore(st)) puts("PASS"); else return (1); fputs("pdfioStreamClose: ", stdout); if (pdfioStreamClose(st)) puts("PASS"); else return (1); return (0); } // // 'write_text()' - Print a plain text file. // static int // O - 0 on success, 1 on failure write_text(pdfio_file_t *pdf, // I - PDF file int first_page, // I - First page number pdfio_obj_t *font, // I - Page number font const char *filename) // I - File to print { pdfio_obj_t *courier; // Courier font pdfio_dict_t *dict; // Page dictionary FILE *fp; // Print file char line[1024]; // Line from file int page, // Current page number plinenum, // Current line number on page flinenum; // Current line number in file pdfio_stream_t *st = NULL; // Page contents stream // Create text font... fputs("pdfioFileCreateBaseFontObject(\"Courier\"): ", stdout); if ((courier = pdfioFileCreateBaseFontObject(pdf, "Courier")) != NULL) puts("PASS"); else return (1); // Create the page dictionary... fputs("pdfioDictCreate: ", stdout); if ((dict = pdfioDictCreate(pdf)) != NULL) puts("PASS"); else return (1); fputs("pdfioPageDictAddFont(F1): ", stdout); if (pdfioPageDictAddFont(dict, "F1", font)) puts("PASS"); else return (1); fputs("pdfioPageDictAddFont(F2): ", stdout); if (pdfioPageDictAddFont(dict, "F2", courier)) puts("PASS"); else return (1); // Open the print file... if ((fp = fopen(filename, "r")) == NULL) { printf("Unable to open \"%s\": %s\n", filename, strerror(errno)); return (1); } page = first_page; plinenum = 0; flinenum = 0; while (fgets(line, sizeof(line), fp)) { flinenum ++; if (plinenum == 0) { printf("pdfioFileCreatePage(%d): ", page); if ((st = pdfioFileCreatePage(pdf, dict)) != NULL) puts("PASS"); else return (1); // Show the page number fputs("pdfioContentSetFillColorDeviceGray(0.0): ", stdout); if (pdfioContentSetFillColorDeviceGray(st, 0.0)) puts("PASS"); else return (1); fputs("pdfioContentTextBegin(): ", stdout); if (pdfioContentTextBegin(st)) puts("PASS"); else return (1); fputs("pdfioContentSetTextFont(\"F1\", 12.0): ", stdout); if (pdfioContentSetTextFont(st, "F1", 12.0)) puts("PASS"); else return (1); fputs("pdfioContentTextMoveTo(550.0, 36.0): ", stdout); if (pdfioContentTextMoveTo(st, 550.0, 36.0)) puts("PASS"); else return (1); printf("pdfioContentTextShowf(\"%d\"): ", page); if (pdfioContentTextShowf(st, "%d", page)) puts("PASS"); else return (1); fputs("pdfioContentTextEnd(): ", stdout); if (pdfioContentTextEnd(st)) puts("PASS"); else return (1); page ++; plinenum ++; fputs("pdfioContentTextBegin(): ", stdout); if (pdfioContentTextBegin(st)) puts("PASS"); else return (1); fputs("pdfioContentSetTextFont(\"F2\", 10.0): ", stdout); if (pdfioContentSetTextFont(st, "F2", 10.0)) puts("PASS"); else return (1); fputs("pdfioContentSetTextLeading(12.0): ", stdout); if (pdfioContentSetTextLeading(st, 12.0)) puts("PASS"); else return (1); fputs("pdfioContentTextMoveTo(36.0, 746.0): ", stdout); if (pdfioContentTextMoveTo(st, 36.0, 746.0)) puts("PASS"); else return (1); } pdfioContentSetFillColorDeviceGray(st, 0.75); pdfioContentTextShowf(st, "%4d ", flinenum); pdfioContentSetFillColorDeviceGray(st, 0.0); pdfioContentTextShow(st, line); plinenum ++; if (plinenum >= 60) { fputs("pdfioContentTextEnd(): ", stdout); if (pdfioContentTextEnd(st)) puts("PASS"); else return (1); fputs("pdfioStreamClose: ", stdout); if (pdfioStreamClose(st)) puts("PASS"); else return (1); st = NULL; plinenum = 0; } } if (plinenum > 0) { fputs("pdfioContentTextEnd(): ", stdout); if (pdfioContentTextEnd(st)) puts("PASS"); else return (1); fputs("pdfioStreamClose: ", stdout); if (pdfioStreamClose(st)) puts("PASS"); else return (1); } return (0); }