start of JPEG support. removed prototype for non-existent pdf_insert_tiff_image().

Wed, 12 Mar 2003 10:57:55 +0000

author
eric
date
Wed, 12 Mar 2003 10:57:55 +0000
changeset 107
312753062c5b
parent 106
311726c12122
child 108
9b35b78d4c91

start of JPEG support. removed prototype for non-existent pdf_insert_tiff_image().

pdf.h file | annotate | diff | revisions
     1.1 --- a/pdf.h	Wed Mar 12 10:57:06 2003 +0000
     1.2 +++ b/pdf.h	Wed Mar 12 10:57:55 2003 +0000
     1.3 @@ -4,7 +4,7 @@
     1.4   *      will be compressed using ITU-T T.6 (G4) fax encoding.
     1.5   *
     1.6   * PDF routines
     1.7 - * $Id: pdf.h,v 1.6 2003/03/04 18:09:49 eric Exp $
     1.8 + * $Id: pdf.h,v 1.7 2003/03/12 02:57:55 eric Exp $
     1.9   * Copyright 2001, 2002, 2003 Eric Smith <eric@brouhaha.com>
    1.10   *
    1.11   * This program is free software; you can redistribute it and/or modify
    1.12 @@ -73,6 +73,14 @@
    1.13  			     bool BlackIs1);    /* boolean, typ. false */
    1.14  
    1.15  
    1.16 +void pdf_write_jpeg_image (pdf_page_handle pdf_page,
    1.17 +			   double x,
    1.18 +			   double y,
    1.19 +			   double width,
    1.20 +			   double height,
    1.21 +			   FILE *f);
    1.22 +
    1.23 +
    1.24  void pdf_set_page_number (pdf_page_handle pdf_page, char *page_number);
    1.25  
    1.26  /* Create a new bookmark, under the specified parent, or at the top
    1.27 @@ -81,5 +89,3 @@
    1.28  				      char *title,
    1.29  				      bool open,
    1.30  				      pdf_page_handle pdf_page);
    1.31 -
    1.32 -void pdf_insert_tiff_image (pdf_page_handle pdf_page, char *filename);