Tue, 01 Jan 2002 05:41:03 +0000
fix bugs. copy samples per pixel tag.
eric@10 | 1 | /* |
eric@29 | 2 | * tiff2pdf: Create a PDF file from the contents of one or more |
eric@29 | 3 | * TIFF bilevel image files. The images in the resulting |
eric@29 | 4 | * PDF file will be compressed using ITU-T T.6 (G4) fax |
eric@29 | 5 | * encoding. |
eric@29 | 6 | * |
eric@10 | 7 | * Main program |
eric@29 | 8 | * $Id: t2p.c,v 1.10 2001/12/31 21:41:03 eric Exp $ |
eric@10 | 9 | * Copyright 2001 Eric Smith <eric@brouhaha.com> |
eric@10 | 10 | * |
eric@10 | 11 | * This program is free software; you can redistribute it and/or modify |
eric@10 | 12 | * it under the terms of the GNU General Public License version 2 as |
eric@10 | 13 | * published by the Free Software Foundation. Note that permission is |
eric@10 | 14 | * not granted to redistribute this program under the terms of any |
eric@10 | 15 | * other version of the General Public License. |
eric@10 | 16 | * |
eric@10 | 17 | * This program is distributed in the hope that it will be useful, |
eric@10 | 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
eric@10 | 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
eric@10 | 20 | * GNU General Public License for more details. |
eric@10 | 21 | * |
eric@10 | 22 | * You should have received a copy of the GNU General Public License |
eric@10 | 23 | * along with this program; if not, write to the Free Software |
eric@10 | 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA |
eric@10 | 25 | */ |
eric@10 | 26 | |
eric@10 | 27 | |
eric@10 | 28 | #include <stdio.h> |
eric@28 | 29 | #include <stdlib.h> |
eric@28 | 30 | #include <unistd.h> |
eric@10 | 31 | #include <tiffio.h> |
eric@10 | 32 | #include <panda/functions.h> |
eric@10 | 33 | #include <panda/constants.h> |
eric@10 | 34 | |
eric@10 | 35 | #include "type.h" |
eric@10 | 36 | #include "bitblt.h" |
eric@18 | 37 | #include "semantics.h" |
eric@10 | 38 | #include "parser.tab.h" |
eric@10 | 39 | #include "tiff2pdf.h" |
eric@10 | 40 | |
eric@10 | 41 | |
eric@28 | 42 | #define POINTS_PER_INCH 72 |
eric@28 | 43 | |
eric@28 | 44 | /* page size limited by Acrobat Reader to 45 inches on a side */ |
eric@28 | 45 | #define PAGE_MAX_INCHES 45 |
eric@28 | 46 | #define PAGE_MAX_POINTS (PAGE_MAX_INCHES * POINTS_PER_INCH) |
eric@28 | 47 | |
eric@28 | 48 | |
eric@26 | 49 | typedef struct output_file_t |
eric@26 | 50 | { |
eric@26 | 51 | struct output_file_t *next; |
eric@26 | 52 | char *name; |
eric@26 | 53 | panda_pdf *pdf; |
eric@26 | 54 | } output_file_t; |
eric@26 | 55 | |
eric@26 | 56 | |
eric@26 | 57 | char *in_filename; |
eric@10 | 58 | TIFF *in; |
eric@26 | 59 | output_file_t *output_files; |
eric@26 | 60 | output_file_t *out; |
eric@26 | 61 | /* panda_pdf *out; */ |
eric@10 | 62 | |
eric@10 | 63 | |
eric@10 | 64 | boolean close_tiff_input_file (void) |
eric@10 | 65 | { |
eric@10 | 66 | if (in) |
eric@26 | 67 | { |
eric@26 | 68 | free (in_filename); |
eric@26 | 69 | TIFFClose (in); |
eric@26 | 70 | } |
eric@10 | 71 | in = NULL; |
eric@26 | 72 | in_filename = NULL; |
eric@10 | 73 | return (1); |
eric@10 | 74 | } |
eric@10 | 75 | |
eric@10 | 76 | boolean open_tiff_input_file (char *name) |
eric@10 | 77 | { |
eric@10 | 78 | if (in) |
eric@26 | 79 | { |
eric@26 | 80 | if (strcmp (name, in_filename) == 0) |
eric@26 | 81 | return (1); |
eric@26 | 82 | close_tiff_input_file (); |
eric@26 | 83 | } |
eric@26 | 84 | in_filename = strdup (name); |
eric@26 | 85 | if (! in_filename) |
eric@26 | 86 | { |
eric@26 | 87 | fprintf (stderr, "can't strdup input filename '%s'\n", name); |
eric@26 | 88 | return (0); |
eric@26 | 89 | } |
eric@10 | 90 | in = TIFFOpen (name, "r"); |
eric@10 | 91 | if (! in) |
eric@10 | 92 | { |
eric@10 | 93 | fprintf (stderr, "can't open input file '%s'\n", name); |
eric@26 | 94 | free (in_filename); |
eric@10 | 95 | return (0); |
eric@10 | 96 | } |
eric@10 | 97 | return (1); |
eric@10 | 98 | } |
eric@10 | 99 | |
eric@10 | 100 | |
eric@26 | 101 | boolean close_pdf_output_files (void) |
eric@10 | 102 | { |
eric@26 | 103 | output_file_t *o, *n; |
eric@26 | 104 | |
eric@26 | 105 | for (o = output_files; o; o = n) |
eric@26 | 106 | { |
eric@26 | 107 | n = o->next; |
eric@26 | 108 | panda_close (o->pdf); |
eric@26 | 109 | free (o->name); |
eric@26 | 110 | free (o); |
eric@26 | 111 | } |
eric@10 | 112 | out = NULL; |
eric@26 | 113 | output_files = NULL; |
eric@10 | 114 | return (1); |
eric@10 | 115 | } |
eric@10 | 116 | |
eric@10 | 117 | boolean open_pdf_output_file (char *name) |
eric@10 | 118 | { |
eric@26 | 119 | output_file_t *o; |
eric@26 | 120 | |
eric@26 | 121 | if (out && (strcmp (name, out->name) == 0)) |
eric@26 | 122 | return (1); |
eric@26 | 123 | for (o = output_files; o; o = o->next) |
eric@26 | 124 | if (strcmp (name, o->name) == 0) |
eric@26 | 125 | { |
eric@26 | 126 | out = o; |
eric@26 | 127 | return (1); |
eric@26 | 128 | } |
eric@26 | 129 | o = calloc (1, sizeof (output_file_t)); |
eric@29 | 130 | if (! o) |
eric@10 | 131 | { |
eric@26 | 132 | fprintf (stderr, "can't calloc output file struct for '%s'\n", name); |
eric@26 | 133 | return (0); |
eric@26 | 134 | } |
eric@26 | 135 | |
eric@26 | 136 | o->name = strdup (name); |
eric@26 | 137 | if (! o->name) |
eric@26 | 138 | { |
eric@26 | 139 | fprintf (stderr, "can't strdup output filename '%s'\n", name); |
eric@26 | 140 | free (o); |
eric@10 | 141 | return (0); |
eric@10 | 142 | } |
eric@26 | 143 | |
eric@26 | 144 | o->pdf = panda_open (name, "w"); |
eric@26 | 145 | if (! o->pdf) |
eric@26 | 146 | { |
eric@26 | 147 | fprintf (stderr, "can't open output file '%s'\n", name); |
eric@26 | 148 | free (o->name); |
eric@26 | 149 | free (o); |
eric@26 | 150 | return (0); |
eric@26 | 151 | } |
eric@26 | 152 | |
eric@26 | 153 | /* prepend new output file onto list */ |
eric@26 | 154 | o->next = output_files; |
eric@26 | 155 | output_files = o; |
eric@26 | 156 | |
eric@26 | 157 | out = o; |
eric@10 | 158 | return (1); |
eric@10 | 159 | } |
eric@10 | 160 | |
eric@10 | 161 | |
eric@25 | 162 | void process_page_numbers (int page_index, |
eric@25 | 163 | int count, |
eric@25 | 164 | int base, |
eric@25 | 165 | page_label_t *page_label) |
eric@25 | 166 | { |
eric@25 | 167 | } |
eric@25 | 168 | |
eric@25 | 169 | |
eric@23 | 170 | boolean process_page (int image, /* range 1 .. n */ |
eric@23 | 171 | input_attributes_t input_attributes, |
eric@25 | 172 | bookmark_t *bookmarks) |
eric@10 | 173 | { |
eric@29 | 174 | int result = 0; |
eric@29 | 175 | |
eric@10 | 176 | u32 image_length, image_width; |
eric@10 | 177 | #ifdef CHECK_DEPTH |
eric@10 | 178 | u32 image_depth; |
eric@10 | 179 | #endif |
eric@29 | 180 | |
eric@29 | 181 | u16 samples_per_pixel; |
eric@10 | 182 | u16 bits_per_sample; |
eric@10 | 183 | u16 planar_config; |
eric@10 | 184 | u16 resolution_unit; |
eric@10 | 185 | float x_resolution, y_resolution; |
eric@28 | 186 | int width_points, height_points; /* really 1/72 inch units rather than |
eric@28 | 187 | points */ |
eric@28 | 188 | |
eric@10 | 189 | |
eric@10 | 190 | char *buffer; |
eric@10 | 191 | u32 row; |
eric@10 | 192 | |
eric@28 | 193 | panda_page *page; |
eric@28 | 194 | |
eric@28 | 195 | int tiff_temp_fd; |
eric@28 | 196 | char tiff_temp_fn [] = "/var/tmp/tiff2pdf-XXXXXX\0"; |
eric@28 | 197 | TIFF *tiff_temp; |
eric@28 | 198 | |
eric@28 | 199 | char pagesize [26]; /* Needs to hold two ints of four characters (0..3420), |
eric@28 | 200 | two zeros, three spaces, two brackets, and a NULL. |
eric@28 | 201 | Added an extra ten characters just in case. */ |
eric@28 | 202 | |
eric@10 | 203 | if (! TIFFSetDirectory (in, image - 1)) |
eric@10 | 204 | { |
eric@10 | 205 | fprintf (stderr, "can't find page %d of input file\n", image); |
eric@10 | 206 | goto fail; |
eric@10 | 207 | } |
eric@10 | 208 | if (1 != TIFFGetField (in, TIFFTAG_IMAGELENGTH, & image_length)) |
eric@10 | 209 | { |
eric@10 | 210 | fprintf (stderr, "can't get image length\n"); |
eric@10 | 211 | goto fail; |
eric@10 | 212 | } |
eric@10 | 213 | if (1 != TIFFGetField (in, TIFFTAG_IMAGEWIDTH, & image_width)) |
eric@10 | 214 | { |
eric@10 | 215 | fprintf (stderr, "can't get image width\n"); |
eric@10 | 216 | goto fail; |
eric@10 | 217 | } |
eric@29 | 218 | |
eric@29 | 219 | if (1 != TIFFGetField (in, TIFFTAG_SAMPLESPERPIXEL, & samples_per_pixel)) |
eric@29 | 220 | { |
eric@29 | 221 | fprintf (stderr, "can't get samples per pixel\n"); |
eric@29 | 222 | goto fail; |
eric@29 | 223 | } |
eric@29 | 224 | |
eric@10 | 225 | #ifdef CHECK_DEPTH |
eric@10 | 226 | if (1 != TIFFGetField (in, TIFFTAG_IMAGEDEPTH, & image_depth)) |
eric@10 | 227 | { |
eric@10 | 228 | fprintf (stderr, "can't get image depth\n"); |
eric@10 | 229 | goto fail; |
eric@10 | 230 | } |
eric@10 | 231 | #endif |
eric@10 | 232 | |
eric@10 | 233 | if (1 != TIFFGetField (in, TIFFTAG_BITSPERSAMPLE, & bits_per_sample)) |
eric@10 | 234 | { |
eric@10 | 235 | fprintf (stderr, "can't get bits per sample\n"); |
eric@10 | 236 | goto fail; |
eric@10 | 237 | } |
eric@10 | 238 | |
eric@10 | 239 | if (1 != TIFFGetField (in, TIFFTAG_PLANARCONFIG, & planar_config)) |
eric@10 | 240 | planar_config = 1; |
eric@10 | 241 | |
eric@10 | 242 | printf ("image length %u width %u, " |
eric@10 | 243 | #ifdef CHECK_DEPTH |
eric@10 | 244 | "depth %u, " |
eric@10 | 245 | #endif |
eric@10 | 246 | "planar config %u\n", |
eric@10 | 247 | image_length, image_width, |
eric@10 | 248 | #ifdef CHECK_DEPTH |
eric@10 | 249 | image_depth, |
eric@10 | 250 | #endif |
eric@10 | 251 | planar_config); |
eric@10 | 252 | |
eric@10 | 253 | if (1 != TIFFGetField (in, TIFFTAG_RESOLUTIONUNIT, & resolution_unit)) |
eric@10 | 254 | resolution_unit = 2; |
eric@10 | 255 | if (1 != TIFFGetField (in, TIFFTAG_XRESOLUTION, & x_resolution)) |
eric@10 | 256 | x_resolution = 300; |
eric@10 | 257 | if (1 != TIFFGetField (in, TIFFTAG_YRESOLUTION, & y_resolution)) |
eric@10 | 258 | y_resolution = 300; |
eric@10 | 259 | |
eric@10 | 260 | printf ("resolution unit %u, x resolution %f, y resolution %f\n", |
eric@10 | 261 | resolution_unit, x_resolution, y_resolution); |
eric@10 | 262 | |
eric@29 | 263 | if (samples_per_pixel != 1) |
eric@29 | 264 | { |
eric@29 | 265 | fprintf (stderr, "samples per pixel %u, must be 1\n", samples_per_pixel); |
eric@29 | 266 | goto fail; |
eric@29 | 267 | } |
eric@29 | 268 | |
eric@10 | 269 | #ifdef CHECK_DEPTH |
eric@10 | 270 | if (image_depth != 1) |
eric@10 | 271 | { |
eric@10 | 272 | fprintf (stderr, "image depth %u, must be 1\n", image_depth); |
eric@10 | 273 | goto fail; |
eric@10 | 274 | } |
eric@10 | 275 | #endif |
eric@10 | 276 | |
eric@10 | 277 | if (bits_per_sample != 1) |
eric@10 | 278 | { |
eric@10 | 279 | fprintf (stderr, "bits per sample %u, must be 1\n", bits_per_sample); |
eric@10 | 280 | goto fail; |
eric@10 | 281 | } |
eric@10 | 282 | |
eric@10 | 283 | if (planar_config != 1) |
eric@10 | 284 | { |
eric@10 | 285 | fprintf (stderr, "planar config %u, must be 1\n", planar_config); |
eric@10 | 286 | goto fail; |
eric@10 | 287 | } |
eric@10 | 288 | |
eric@28 | 289 | tiff_temp_fd = mkstemp (tiff_temp_fn); |
eric@28 | 290 | if (tiff_temp_fd < 0) |
eric@28 | 291 | { |
eric@28 | 292 | fprintf (stderr, "can't create temporary TIFF file\n"); |
eric@28 | 293 | goto fail; |
eric@28 | 294 | } |
eric@10 | 295 | |
eric@28 | 296 | tiff_temp = TIFFFdOpen (tiff_temp_fd, tiff_temp_fn, "w"); |
eric@28 | 297 | if (! out) |
eric@28 | 298 | { |
eric@28 | 299 | fprintf (stderr, "can't open temporary TIFF file '%s'\n", tiff_temp_fn); |
eric@28 | 300 | goto fail; |
eric@28 | 301 | } |
eric@10 | 302 | |
eric@28 | 303 | TIFFSetField (tiff_temp, TIFFTAG_IMAGELENGTH, image_length); |
eric@28 | 304 | TIFFSetField (tiff_temp, TIFFTAG_IMAGEWIDTH, image_width); |
eric@28 | 305 | TIFFSetField (tiff_temp, TIFFTAG_PLANARCONFIG, planar_config); |
eric@28 | 306 | |
eric@28 | 307 | TIFFSetField (tiff_temp, TIFFTAG_ROWSPERSTRIP, image_length); |
eric@10 | 308 | |
eric@28 | 309 | TIFFSetField (tiff_temp, TIFFTAG_RESOLUTIONUNIT, resolution_unit); |
eric@28 | 310 | TIFFSetField (tiff_temp, TIFFTAG_XRESOLUTION, x_resolution); |
eric@28 | 311 | TIFFSetField (tiff_temp, TIFFTAG_YRESOLUTION, y_resolution); |
eric@28 | 312 | |
eric@29 | 313 | TIFFSetField (tiff_temp, TIFFTAG_SAMPLESPERPIXEL, samples_per_pixel); |
eric@28 | 314 | TIFFSetField (tiff_temp, TIFFTAG_BITSPERSAMPLE, bits_per_sample); |
eric@28 | 315 | TIFFSetField (tiff_temp, TIFFTAG_COMPRESSION, COMPRESSION_CCITTFAX4); |
eric@28 | 316 | TIFFSetField (tiff_temp, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISWHITE); |
eric@10 | 317 | |
eric@10 | 318 | buffer = _TIFFmalloc (TIFFScanlineSize (in)); |
eric@10 | 319 | if (! buffer) |
eric@10 | 320 | { |
eric@10 | 321 | fprintf (stderr, "failed to allocate buffer\n"); |
eric@10 | 322 | goto fail; |
eric@10 | 323 | } |
eric@10 | 324 | |
eric@10 | 325 | for (row = 0; row < image_length; row++) |
eric@10 | 326 | { |
eric@10 | 327 | TIFFReadScanline (in, buffer, row, 0); |
eric@28 | 328 | TIFFWriteScanline (tiff_temp, buffer, row, 0); |
eric@10 | 329 | } |
eric@10 | 330 | |
eric@10 | 331 | _TIFFfree (buffer); |
eric@28 | 332 | TIFFClose (tiff_temp); |
eric@28 | 333 | |
eric@29 | 334 | width_points = (image_width / x_resolution) * POINTS_PER_INCH; |
eric@29 | 335 | height_points = (image_length / y_resolution) * POINTS_PER_INCH; |
eric@28 | 336 | |
eric@28 | 337 | if ((height_points > PAGE_MAX_POINTS) || (width_points > PAGE_MAX_POINTS)) |
eric@28 | 338 | { |
eric@28 | 339 | fprintf (stdout, "image too large (max %d inches on a side\n", PAGE_MAX_INCHES); |
eric@28 | 340 | goto fail; |
eric@28 | 341 | } |
eric@28 | 342 | |
eric@28 | 343 | printf ("height_points %d, width_points %d\n", height_points, width_points); |
eric@28 | 344 | |
eric@28 | 345 | sprintf (pagesize, "[0 0 %d %d]", width_points, height_points); |
eric@28 | 346 | |
eric@28 | 347 | page = panda_newpage (out->pdf, pagesize); |
eric@28 | 348 | panda_imagebox (out->pdf, |
eric@28 | 349 | page, |
eric@28 | 350 | 0, /* top */ |
eric@28 | 351 | 0, /* left */ |
eric@28 | 352 | height_points, /* bottom */ |
eric@28 | 353 | width_points, /* right */ |
eric@28 | 354 | tiff_temp_fn, |
eric@28 | 355 | panda_image_tiff); |
eric@28 | 356 | |
eric@29 | 357 | result = 1; |
eric@10 | 358 | |
eric@10 | 359 | fail: |
eric@29 | 360 | if (tiff_temp_fd) |
eric@29 | 361 | unlink (tiff_temp_fn); |
eric@29 | 362 | return (result); |
eric@10 | 363 | } |
eric@10 | 364 | |
eric@10 | 365 | |
eric@10 | 366 | int main (int argc, char *argv[]) |
eric@10 | 367 | { |
eric@10 | 368 | int result = 0; |
eric@10 | 369 | |
eric@10 | 370 | panda_init (); |
eric@10 | 371 | |
eric@10 | 372 | if (argc != 2) |
eric@10 | 373 | { |
eric@10 | 374 | fprintf (stderr, "usage: %s spec\n", argv [0]); |
eric@10 | 375 | result = 1; |
eric@10 | 376 | goto fail; |
eric@10 | 377 | } |
eric@10 | 378 | |
eric@17 | 379 | if (! parse_spec_file (argv [1])) |
eric@26 | 380 | { |
eric@26 | 381 | result = 2; |
eric@26 | 382 | goto fail; |
eric@26 | 383 | } |
eric@26 | 384 | |
eric@26 | 385 | if (! process_specs ()) |
eric@26 | 386 | { |
eric@26 | 387 | result = 3; |
eric@26 | 388 | goto fail; |
eric@26 | 389 | } |
eric@17 | 390 | |
eric@10 | 391 | fail: |
eric@10 | 392 | close_tiff_input_file (); |
eric@26 | 393 | close_pdf_output_files (); |
eric@10 | 394 | return (result); |
eric@10 | 395 | } |