home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 February / PCWorld_2002-02_cd.bin / Software / Vyzkuste / pdflib / pdflib-4.0.1.sit / pdflib-4.0.1 / bind / cpp / image.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2001-07-04  |  1.2 KB  |  53 lines  |  [TEXT/CWIE]

  1. // $Id: image.cpp,v 1.6.2.1 2001/05/16 12:25:50 york Exp $
  2. // PDFlib client: image example in C++
  3. //
  4. //
  5.  
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8.  
  9. #include "pdflib.hpp"
  10.  
  11. int
  12. main(void)
  13. {
  14.     PDF *p;            // pointer to the PDF class
  15.     int image;
  16.     float width, height;
  17.     char *imagefile = (char *) "../../test/nesrin.jpg";
  18.  
  19.     p = new PDF();
  20.  
  21.     // Open new PDF file
  22.     if (p->open("image.pdf") == -1) {
  23.     fprintf(stderr, "Error: couldn't open PDF file image.pdf.\n");
  24.     exit(2);
  25.     }
  26.  
  27.     p->set_info("Creator", "image.cpp");
  28.     p->set_info("Author", "Thomas Merz");
  29.     p->set_info("Title", "image sample (C++)!");
  30.  
  31.     image = p->open_image_file("jpeg", imagefile, "", 0);
  32.  
  33.     if (image == -1) {
  34.     fprintf(stderr, "Error: couldn't open image file.\n");
  35.     exit(3);
  36.     }
  37.  
  38.     // See the PDFlib manual for more advanced image size calculations
  39.     width = p->get_value("imagewidth", image);
  40.     height = p->get_value("imageheight", image);
  41.     
  42.     // We generate a page with the image's dimensions
  43.     p->begin_page(width, height);
  44.     p->place_image(image, (float) 0.0, (float) 0.0, (float) 1.0);
  45.     p->close_image(image);
  46.     p->end_page();                // finish page
  47.  
  48.     p->close();                    // close PDF document
  49.     delete p;
  50.  
  51.     return(0);
  52. }
  53.