pdf_g4.c

Tue, 11 Mar 2003 11:14:39 +0000

author
eric
date
Tue, 11 Mar 2003 11:14:39 +0000
changeset 95
851a04fa5324
parent 91
e63762afae80
child 100
5916a95e2b92
permissions
-rw-r--r--

many bug fixes including bit ordering of output, search positions and polarities. added G4_DEBUG conditional.

eric@62 1 /*
eric@62 2 * t2p: Create a PDF file from the contents of one or more TIFF
eric@62 3 * bilevel image files. The images in the resulting PDF file
eric@62 4 * will be compressed using ITU-T T.6 (G4) fax encoding.
eric@62 5 *
eric@62 6 * PDF routines
eric@91 7 * $Id: pdf_g4.c,v 1.9 2003/03/10 01:49:50 eric Exp $
eric@78 8 * Copyright 2003 Eric Smith <eric@brouhaha.com>
eric@62 9 *
eric@62 10 * This program is free software; you can redistribute it and/or modify
eric@62 11 * it under the terms of the GNU General Public License version 2 as
eric@62 12 * published by the Free Software Foundation. Note that permission is
eric@62 13 * not granted to redistribute this program under the terms of any
eric@62 14 * other version of the General Public License.
eric@62 15 *
eric@62 16 * This program is distributed in the hope that it will be useful,
eric@62 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
eric@62 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
eric@62 19 * GNU General Public License for more details.
eric@62 20 *
eric@62 21 * You should have received a copy of the GNU General Public License
eric@62 22 * along with this program; if not, write to the Free Software
eric@62 23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA
eric@62 24 */
eric@62 25
eric@62 26
eric@62 27 #include <stdbool.h>
eric@62 28 #include <stdint.h>
eric@59 29 #include <stdio.h>
eric@67 30 #include <stdlib.h>
eric@59 31 #include <string.h>
eric@59 32
eric@59 33
eric@62 34 #include "bitblt.h"
eric@60 35 #include "pdf.h"
eric@60 36 #include "pdf_util.h"
eric@60 37 #include "pdf_prim.h"
eric@60 38 #include "pdf_private.h"
eric@59 39
eric@59 40
eric@67 41 #define SWAP(type,a,b) do { type temp; temp = a; a = b; b = temp; } while (0)
eric@67 42
eric@67 43
eric@59 44 struct pdf_g4_image
eric@59 45 {
eric@64 46 double width, height;
eric@64 47 double x, y;
eric@66 48 double r, g, b; /* fill color, only for ImageMask */
eric@59 49 unsigned long Columns;
eric@59 50 unsigned long Rows;
eric@66 51 bool ImageMask;
eric@66 52 bool BlackIs1;
eric@62 53 Bitmap *bitmap;
eric@59 54 char XObject_name [4];
eric@59 55 };
eric@59 56
eric@59 57
eric@59 58 char pdf_new_XObject (pdf_page_handle pdf_page, struct pdf_obj *ind_ref)
eric@59 59 {
eric@59 60 char XObject_name [4] = "Im ";
eric@59 61
eric@59 62 XObject_name [2] = ++pdf_page->last_XObject_name;
eric@59 63
eric@59 64 if (! pdf_page->XObject_dict)
eric@59 65 {
eric@59 66 pdf_page->XObject_dict = pdf_new_obj (PT_DICTIONARY);
eric@59 67 pdf_set_dict_entry (pdf_page->resources, "XObject", pdf_page->XObject_dict);
eric@59 68 }
eric@59 69
eric@59 70 pdf_set_dict_entry (pdf_page->XObject_dict, & XObject_name [0], ind_ref);
eric@59 71
eric@59 72 return (pdf_page->last_XObject_name);
eric@59 73 }
eric@59 74
eric@59 75
eric@59 76 void pdf_write_g4_content_callback (pdf_file_handle pdf_file,
eric@59 77 struct pdf_obj *stream,
eric@59 78 void *app_data)
eric@59 79 {
eric@59 80 struct pdf_g4_image *image = app_data;
eric@59 81
eric@66 82 /* transformation matrix is: width 0 0 height x y cm */
eric@66 83 pdf_stream_printf (pdf_file, stream, "q %g 0 0 %g %g %g cm ",
eric@66 84 image->width, image->height,
eric@66 85 image->x, image->y);
eric@66 86 if (image->ImageMask)
eric@66 87 pdf_stream_printf (pdf_file, stream, "%g %g %g rg ",
eric@66 88 image->r, image->g, image->b);
eric@59 89
eric@66 90 pdf_stream_printf (pdf_file, stream, "/%s Do Q\r\n",
eric@66 91 image->XObject_name);
eric@59 92 }
eric@59 93
eric@59 94
eric@59 95 void pdf_write_g4_fax_image_callback (pdf_file_handle pdf_file,
eric@59 96 struct pdf_obj *stream,
eric@59 97 void *app_data)
eric@59 98 {
eric@59 99 struct pdf_g4_image *image = app_data;
eric@59 100
eric@91 101 bitblt_write_g4 (image->bitmap, pdf_file->f);
eric@59 102 }
eric@59 103
eric@59 104
eric@59 105 void pdf_write_g4_fax_image (pdf_page_handle pdf_page,
eric@64 106 double x,
eric@64 107 double y,
eric@64 108 double width,
eric@64 109 double height,
eric@62 110 Bitmap *bitmap,
eric@66 111 bool ImageMask,
eric@66 112 double r, /* RGB fill color, only for ImageMask */
eric@66 113 double g,
eric@66 114 double b,
eric@66 115 bool BlackIs1) /* boolean, typ. false */
eric@59 116 {
eric@59 117 struct pdf_g4_image *image;
eric@59 118
eric@59 119 struct pdf_obj *stream;
eric@59 120 struct pdf_obj *stream_dict;
eric@59 121 struct pdf_obj *decode_parms;
eric@59 122
eric@59 123 struct pdf_obj *content_stream;
eric@59 124
eric@67 125 image = pdf_calloc (1, sizeof (struct pdf_g4_image));
eric@59 126
eric@64 127 image->width = width;
eric@64 128 image->height = height;
eric@64 129 image->x = x;
eric@64 130 image->y = y;
eric@66 131 image->r = r;
eric@66 132 image->g = g;
eric@66 133 image->b = b;
eric@64 134
eric@62 135 image->bitmap = bitmap;
eric@62 136 image->Columns = bitmap->rect.max.x - bitmap->rect.min.x;
eric@62 137 image->Rows = bitmap->rect.max.y - bitmap->rect.min.y;
eric@66 138 image->ImageMask = ImageMask;
eric@59 139 image->BlackIs1 = BlackIs1;
eric@59 140
eric@59 141 stream_dict = pdf_new_obj (PT_DICTIONARY);
eric@59 142
eric@59 143 stream = pdf_new_ind_ref (pdf_page->pdf_file,
eric@59 144 pdf_new_stream (pdf_page->pdf_file,
eric@59 145 stream_dict,
eric@59 146 & pdf_write_g4_fax_image_callback,
eric@59 147 image));
eric@59 148
eric@59 149 strcpy (& image->XObject_name [0], "Im ");
eric@59 150 image->XObject_name [2] = pdf_new_XObject (pdf_page, stream);
eric@59 151
eric@59 152 pdf_set_dict_entry (stream_dict, "Type", pdf_new_name ("XObject"));
eric@59 153 pdf_set_dict_entry (stream_dict, "Subtype", pdf_new_name ("Image"));
eric@59 154 pdf_set_dict_entry (stream_dict, "Name", pdf_new_name (& image->XObject_name [0]));
eric@62 155 pdf_set_dict_entry (stream_dict, "Width", pdf_new_integer (image->Columns));
eric@62 156 pdf_set_dict_entry (stream_dict, "Height", pdf_new_integer (image->Rows));
eric@59 157 pdf_set_dict_entry (stream_dict, "BitsPerComponent", pdf_new_integer (1));
eric@59 158 if (ImageMask)
eric@59 159 pdf_set_dict_entry (stream_dict, "ImageMask", pdf_new_bool (ImageMask));
eric@59 160 else
eric@59 161 pdf_set_dict_entry (stream_dict, "ColorSpace", pdf_new_name ("DeviceGray"));
eric@59 162
eric@59 163 decode_parms = pdf_new_obj (PT_DICTIONARY);
eric@59 164
eric@59 165 pdf_set_dict_entry (decode_parms,
eric@59 166 "K",
eric@59 167 pdf_new_integer (-1));
eric@59 168
eric@59 169 pdf_set_dict_entry (decode_parms,
eric@59 170 "Columns",
eric@62 171 pdf_new_integer (image->Columns));
eric@59 172
eric@59 173 pdf_set_dict_entry (decode_parms,
eric@59 174 "Rows",
eric@62 175 pdf_new_integer (image->Rows));
eric@59 176
eric@59 177 if (BlackIs1)
eric@59 178 pdf_set_dict_entry (decode_parms,
eric@59 179 "BlackIs1",
eric@59 180 pdf_new_bool (BlackIs1));
eric@59 181
eric@59 182 pdf_stream_add_filter (stream, "CCITTFaxDecode", decode_parms);
eric@59 183
eric@59 184 /* the following will write the stream, using our callback function to
eric@59 185 get the actual data */
eric@59 186 pdf_write_ind_obj (pdf_page->pdf_file, stream);
eric@59 187
eric@59 188 content_stream = pdf_new_ind_ref (pdf_page->pdf_file,
eric@59 189 pdf_new_stream (pdf_page->pdf_file,
eric@59 190 pdf_new_obj (PT_DICTIONARY),
eric@59 191 & pdf_write_g4_content_callback,
eric@59 192 image));
eric@59 193
eric@59 194 pdf_set_dict_entry (pdf_page->page_dict, "Contents", content_stream);
eric@59 195
eric@59 196 pdf_write_ind_obj (pdf_page->pdf_file, content_stream);
eric@59 197 }
eric@59 198