images/multi_page_tiff
Convert a TIFF image containing one or more frames to PDF.
Download Java Code Switch to PHP Code Show Output
/*
* Multi-page TIFF to PDF converter
*
* Convert an input TIFF image containing one or more frames to PDF.
*
* Required software: PDFlib/PDFlib+PDI/PPS 10
* Required data: multi-page TIFF image
*/
package com.pdflib.cookbook.pdflib.images;
import com.pdflib.pdflib;
import com.pdflib.PDFlibException;
public class multi_page_tiff
{
public static void main (String argv[])
{
/* This is where the data files are. Adjust as necessary. */
String searchpath = "../input";
String outfile = "multi_page_tiff.pdf";
String title = "Multi-page TIFF";
pdflib p = null;
int exitcode = 0;
String imagefile = "multi_page.tif";
int image, frame;
int x = 50, y = 700;
try {
p = new pdflib();
p.set_option("searchpath={" + searchpath + "}");
/* This means we must check return values of load_font() etc. */
p.set_option("errorpolicy=return");
if (p.begin_document(outfile, "") == -1)
throw new Exception("Error: " + p.get_errmsg());
p.set_info("Creator", "PDFlib Cookbook");
p.set_info("Title", title);
/* Loop over all frames of the multi-page TIFF image */
for (frame = 1; /* */ ; frame++)
{
/* Load the next frame of the image */
image = p.load_image("tiff", imagefile, "page=" + frame);
if (image == -1)
{
if (frame == 1)
/* Image not found */
throw new Exception("Error: " + p.get_errmsg());
else
/* no more frames available */
break;
}
/* Start page and place the frame on the page,
* placed at the bottom center.
*/
p.begin_page_ext(0, 0, "width=a4.width height=a4.height");
p.fit_image(image, 0.0, 0.0, "adjustpage");
p.close_image(image);
/* Output the number of the frame */
p.fit_textline("Frame " + frame + " of the TIFF image", x, y,
"fontname=NotoSerif-Bold fontsize=12");
p.end_page_ext("");
}
p.end_document("");
} catch (PDFlibException e) {
System.err.println("PDFlib exception occurred:");
System.err.println("[" + e.get_errnum() + "] " + e.get_apiname() +
": " + e.get_errmsg());
exitcode = 1;
} catch (Exception e) {
System.err.println(e);
exitcode = 1;
} finally {
if (p != null) {
p.delete();
}
System.exit(exitcode);
}
}
}