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 / personalize.py < prev    next >
Encoding:
Python Source  |  2001-07-04  |  1.9 KB  |  74 lines  |  [TEXT/Pyth]

  1. #!/usr/bin/python
  2. # $Id: personalize.py,v 1.3 2001/04/18 10:16:13 tm Exp $
  3. #
  4. # PDFlib/PDI client: personalization demo
  5. #
  6.  
  7. from sys import *
  8. from time import *
  9. from pdflib_py import *
  10.  
  11. p = PDF_new()
  12.  
  13. if PDF_open_file(p, "personalize.pdf") == -1:
  14.     print "Couldn't open PDF file 'personalize.pdf'\n"
  15.     exit(2)
  16.  
  17. PDF_set_info(p, "Author", "Thomas Merz")
  18. PDF_set_info(p, "Creator", "personalize.py")
  19. PDF_set_info(p, "Title", "PDFlib personalization demo (Python)")
  20.  
  21. infile = "../../doc/PDFlib-purchase-order.pdf"
  22. col1 = 70
  23. col2 = 335
  24.  
  25. form = PDF_open_pdi(p, infile, "", 0)
  26. if form == -1:
  27.     print "Couldn't open input file '" + infile + "'.\n"
  28.     exit(2)
  29.  
  30. page = PDF_open_pdi_page(p, form, 1, "")
  31. if page == -1:
  32.     print "Couldn't open page 1 in '" + infile + "'.\n"
  33.     exit(2)
  34.  
  35. font = PDF_findfont(p, "Helvetica-Bold", "host", 0)
  36.  
  37. # get the dimensions of the imported form
  38. width = PDF_get_pdi_value(p, "width", form, page, 0)
  39. height = PDF_get_pdi_value(p, "height", form, page, 0)
  40.  
  41. PDF_begin_page(p, width, height)
  42. PDF_place_pdi_page(p, page, 0, 0, 1, 1)
  43. PDF_close_pdi_page(p, page)
  44.  
  45. PDF_setfont(p, font, 18)
  46. PDF_set_value(p, "leading", 24)
  47. PDF_set_text_pos(p, col1, 486)
  48.  
  49. PDF_show(p, "Doublecheck, Inc.")
  50. PDF_continue_text(p, "Petra Porst")
  51. PDF_continue_text(p, "500, Market St.")
  52. PDF_continue_text(p, "94110 San Francisco, CA")
  53. PDF_continue_text(p, "")
  54. PDF_continue_text(p, "USA")
  55. PDF_continue_text(p, "+1/950/123-4567")
  56. PDF_continue_text(p, "+1/950/123-4568")
  57. PDF_continue_text(p, "")
  58. PDF_continue_text(p, "petra@doublecheck.com")
  59.  
  60. (tm_year, tm_mon, tm_day,
  61. tm_hour, tm_min, tm_sec, 
  62. tm_weekday, tm_julian, tm_ds) = localtime(time())
  63.  
  64. months = [ "January", "February", "March", "April", "May", "June",
  65.         "July", "August", "September", "October", "November", "December" ]
  66.  
  67. PDF_set_text_pos(p, col2, 152)
  68. PDF_continue_text(p, "%s %d, %d" % (months[tm_mon], tm_day, tm_year))
  69.  
  70. PDF_end_page(p)
  71. PDF_close(p)
  72. PDF_close_pdi(p, form)
  73. PDF_delete(p)
  74.