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 / python / hello.py next >
Encoding:
Python Source  |  2001-07-04  |  659 b   |  32 lines  |  [TEXT/Pyth]

  1. #!/usr/bin/python
  2. # $Id: hello.py,v 1.6.2.1 2001/05/16 12:25:50 york Exp $
  3. #
  4. # PDFlib client: hello example in Python
  5. #
  6.  
  7. from sys import *
  8. from pdflib_py import *
  9.  
  10. p = PDF_new()
  11.  
  12. if PDF_open_file(p, "hello.pdf") == -1:
  13.     print "Couldn't open PDF file 'hello.pdf'\n"
  14.     exit(2)
  15.  
  16. PDF_set_info(p, "Author", "Thomas Merz")
  17. PDF_set_info(p, "Creator", "hello.py")
  18. PDF_set_info(p, "Title", "Hello world (Python)")
  19.  
  20. PDF_begin_page(p, 595, 842)
  21. font = PDF_findfont(p, "Helvetica-Bold", "host", 0)
  22.  
  23. PDF_setfont(p, font, 18.0)
  24.  
  25. PDF_set_text_pos(p, 50, 700)
  26. PDF_show(p, "Hello world!")
  27. PDF_continue_text(p, "(says Python)")
  28. PDF_end_page(p)
  29. PDF_close(p)
  30.  
  31. PDF_delete(p)
  32.