1.1 diff -r 5916a95e2b92 -r 385a2f77a5d8 pdf_g4.c 1.2 --- a/pdf_g4.c Wed Mar 12 07:38:57 2003 +0000 1.3 +++ b/pdf_g4.c Wed Mar 12 07:43:56 2003 +0000 1.4 @@ -4,7 +4,7 @@ 1.5 * will be compressed using ITU-T T.6 (G4) fax encoding. 1.6 * 1.7 * PDF routines 1.8 - * $Id: pdf_g4.c,v 1.10 2003/03/11 23:38:57 eric Exp $ 1.9 + * $Id: pdf_g4.c,v 1.11 2003/03/11 23:43:56 eric Exp $ 1.10 * Copyright 2003 Eric Smith <eric@brouhaha.com> 1.11 * 1.12 * This program is free software; you can redistribute it and/or modify 1.13 @@ -52,24 +52,6 @@ 1.14 }; 1.15 1.16 1.17 -char pdf_new_XObject (pdf_page_handle pdf_page, struct pdf_obj *ind_ref) 1.18 -{ 1.19 - char XObject_name [4] = "Im "; 1.20 - 1.21 - XObject_name [2] = ++pdf_page->last_XObject_name; 1.22 - 1.23 - if (! pdf_page->XObject_dict) 1.24 - { 1.25 - pdf_page->XObject_dict = pdf_new_obj (PT_DICTIONARY); 1.26 - pdf_set_dict_entry (pdf_page->resources, "XObject", pdf_page->XObject_dict); 1.27 - } 1.28 - 1.29 - pdf_set_dict_entry (pdf_page->XObject_dict, & XObject_name [0], ind_ref); 1.30 - 1.31 - return (pdf_page->last_XObject_name); 1.32 -} 1.33 - 1.34 - 1.35 void pdf_write_g4_content_callback (pdf_file_handle pdf_file, 1.36 struct pdf_obj *stream, 1.37 void *app_data)