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 / hello.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  2001-07-04  |  907 b   |  46 lines  |  [TEXT/CWIE]

  1. // $Id: hello.cpp,v 1.5.2.1 2001/05/16 12:25:50 york Exp $
  2. // PDFlib client: hello 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 font;
  16.  
  17.     p = new PDF();
  18.  
  19.     // Open new PDF file
  20.     if (p->open("hello.pdf") == -1) {
  21.     fprintf(stderr, "Error: cannot open PDF file hello.pdf.\n");
  22.     exit(2);
  23.     }
  24.  
  25.     p->set_info("Creator", "hello.cpp");
  26.     p->set_info("Author", "Thomas Merz");
  27.     p->set_info("Title", "Hello, world (C++)!");
  28.  
  29.     // start a new page
  30.     p->begin_page((float) a4_width, (float) a4_height);
  31.  
  32.     font = p->findfont("Helvetica-Bold", "host", 0);
  33.  
  34.     p->setfont(font, 24);
  35.  
  36.     p->set_text_pos(50, 700);
  37.     p->show("Hello, world!");
  38.     p->continue_text("(says C++)");
  39.     p->end_page();                // finish page
  40.  
  41.     p->close();                    // close PDF document
  42.     delete p;
  43.  
  44.     return(0);
  45. }
  46.