pdf_g4.c

Wed, 12 Mar 2003 07:38:57 +0000

author
eric
date
Wed, 12 Mar 2003 07:38:57 +0000
changeset 100
5916a95e2b92
parent 91
e63762afae80
child 101
385a2f77a5d8
permissions
-rw-r--r--

remove unused SWAP macro.

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@100 7 * $Id: pdf_g4.c,v 1.10 2003/03/11 23:38:57 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@59 41 struct pdf_g4_image
eric@59 42 {
eric@64 43 double width, height;
eric@64 44 double x, y;
eric@66 45 double r, g, b; /* fill color, only for ImageMask */
eric@59 46 unsigned long Columns;
eric@59 47 unsigned long Rows;
eric@66 48 bool ImageMask;
eric@66 49 bool BlackIs1;
eric@62 50 Bitmap *bitmap;
eric@59 51 char XObject_name [4];
eric@59 52 };
eric@59 53
eric@59 54
eric@59 55 char pdf_new_XObject (pdf_page_handle pdf_page, struct pdf_obj *ind_ref)
eric@59 56 {
eric@59 57 char XObject_name [4] = "Im ";
eric@59 58
eric@59 59 XObject_name [2] = ++pdf_page->last_XObject_name;
eric@59 60
eric@59 61 if (! pdf_page->XObject_dict)
eric@59 62 {
eric@59 63 pdf_page->XObject_dict = pdf_new_obj (PT_DICTIONARY);
eric@59 64 pdf_set_dict_entry (pdf_page->resources, "XObject", pdf_page->XObject_dict);
eric@59 65 }
eric@59 66
eric@59 67 pdf_set_dict_entry (pdf_page->XObject_dict, & XObject_name [0], ind_ref);
eric@59 68
eric@59 69 return (pdf_page->last_XObject_name);
eric@59 70 }
eric@59 71
eric@59 72
eric@59 73 void pdf_write_g4_content_callback (pdf_file_handle pdf_file,
eric@59 74 struct pdf_obj *stream,
eric@59 75 void *app_data)
eric@59 76 {
eric@59 77 struct pdf_g4_image *image = app_data;
eric@59 78
eric@66 79 /* transformation matrix is: width 0 0 height x y cm */
eric@66 80 pdf_stream_printf (pdf_file, stream, "q %g 0 0 %g %g %g cm ",
eric@66 81 image->width, image->height,
eric@66 82 image->x, image->y);
eric@66 83 if (image->ImageMask)
eric@66 84 pdf_stream_printf (pdf_file, stream, "%g %g %g rg ",
eric@66 85 image->r, image->g, image->b);
eric@59 86
eric@66 87 pdf_stream_printf (pdf_file, stream, "/%s Do Q\r\n",
eric@66 88 image->XObject_name);
eric@59 89 }
eric@59 90
eric@59 91
eric@59 92 void pdf_write_g4_fax_image_callback (pdf_file_handle pdf_file,
eric@59 93 struct pdf_obj *stream,
eric@59 94 void *app_data)
eric@59 95 {
eric@59 96 struct pdf_g4_image *image = app_data;
eric@59 97
eric@91 98 bitblt_write_g4 (image->bitmap, pdf_file->f);
eric@59 99 }
eric@59 100
eric@59 101
eric@59 102 void pdf_write_g4_fax_image (pdf_page_handle pdf_page,
eric@64 103 double x,
eric@64 104 double y,
eric@64 105 double width,
eric@64 106 double height,
eric@62 107 Bitmap *bitmap,
eric@66 108 bool ImageMask,
eric@66 109 double r, /* RGB fill color, only for ImageMask */
eric@66 110 double g,
eric@66 111 double b,
eric@66 112 bool BlackIs1) /* boolean, typ. false */
eric@59 113 {
eric@59 114 struct pdf_g4_image *image;
eric@59 115
eric@59 116 struct pdf_obj *stream;
eric@59 117 struct pdf_obj *stream_dict;
eric@59 118 struct pdf_obj *decode_parms;
eric@59 119
eric@59 120 struct pdf_obj *content_stream;
eric@59 121
eric@67 122 image = pdf_calloc (1, sizeof (struct pdf_g4_image));
eric@59 123
eric@64 124 image->width = width;
eric@64 125 image->height = height;
eric@64 126 image->x = x;
eric@64 127 image->y = y;
eric@66 128 image->r = r;
eric@66 129 image->g = g;
eric@66 130 image->b = b;
eric@64 131
eric@62 132 image->bitmap = bitmap;
eric@62 133 image->Columns = bitmap->rect.max.x - bitmap->rect.min.x;
eric@62 134 image->Rows = bitmap->rect.max.y - bitmap->rect.min.y;
eric@66 135 image->ImageMask = ImageMask;
eric@59 136 image->BlackIs1 = BlackIs1;
eric@59 137
eric@59 138 stream_dict = pdf_new_obj (PT_DICTIONARY);
eric@59 139
eric@59 140 stream = pdf_new_ind_ref (pdf_page->pdf_file,
eric@59 141 pdf_new_stream (pdf_page->pdf_file,
eric@59 142 stream_dict,
eric@59 143 & pdf_write_g4_fax_image_callback,
eric@59 144 image));
eric@59 145
eric@59 146 strcpy (& image->XObject_name [0], "Im ");
eric@59 147 image->XObject_name [2] = pdf_new_XObject (pdf_page, stream);
eric@59 148
eric@59 149 pdf_set_dict_entry (stream_dict, "Type", pdf_new_name ("XObject"));
eric@59 150 pdf_set_dict_entry (stream_dict, "Subtype", pdf_new_name ("Image"));
eric@59 151 pdf_set_dict_entry (stream_dict, "Name", pdf_new_name (& image->XObject_name [0]));
eric@62 152 pdf_set_dict_entry (stream_dict, "Width", pdf_new_integer (image->Columns));
eric@62 153 pdf_set_dict_entry (stream_dict, "Height", pdf_new_integer (image->Rows));
eric@59 154 pdf_set_dict_entry (stream_dict, "BitsPerComponent", pdf_new_integer (1));
eric@59 155 if (ImageMask)
eric@59 156 pdf_set_dict_entry (stream_dict, "ImageMask", pdf_new_bool (ImageMask));
eric@59 157 else
eric@59 158 pdf_set_dict_entry (stream_dict, "ColorSpace", pdf_new_name ("DeviceGray"));
eric@59 159
eric@59 160 decode_parms = pdf_new_obj (PT_DICTIONARY);
eric@59 161
eric@59 162 pdf_set_dict_entry (decode_parms,
eric@59 163 "K",
eric@59 164 pdf_new_integer (-1));
eric@59 165
eric@59 166 pdf_set_dict_entry (decode_parms,
eric@59 167 "Columns",
eric@62 168 pdf_new_integer (image->Columns));
eric@59 169
eric@59 170 pdf_set_dict_entry (decode_parms,
eric@59 171 "Rows",
eric@62 172 pdf_new_integer (image->Rows));
eric@59 173
eric@59 174 if (BlackIs1)
eric@59 175 pdf_set_dict_entry (decode_parms,
eric@59 176 "BlackIs1",
eric@59 177 pdf_new_bool (BlackIs1));
eric@59 178
eric@59 179 pdf_stream_add_filter (stream, "CCITTFaxDecode", decode_parms);
eric@59 180
eric@59 181 /* the following will write the stream, using our callback function to
eric@59 182 get the actual data */
eric@59 183 pdf_write_ind_obj (pdf_page->pdf_file, stream);
eric@59 184
eric@59 185 content_stream = pdf_new_ind_ref (pdf_page->pdf_file,
eric@59 186 pdf_new_stream (pdf_page->pdf_file,
eric@59 187 pdf_new_obj (PT_DICTIONARY),
eric@59 188 & pdf_write_g4_content_callback,
eric@59 189 image));
eric@59 190
eric@59 191 pdf_set_dict_entry (pdf_page->page_dict, "Contents", content_stream);
eric@59 192
eric@59 193 pdf_write_ind_obj (pdf_page->pdf_file, content_stream);
eric@59 194 }
eric@59 195