#!/usr/bin/perl
# $Id: businesscard.pl,v 1.1 2006/12/01 07:18:12 cz Exp $
#
# PDFlib client: block processing example in C
#

use pdflib_pl 6.0;
use Jcode;

$infile = "boilerplate.pdf";
# This is where font/image/PDF input files live. Adjust as necessary.
#
# Note that this directory must also contain the LuciduxSans font outline
# and metrics files.
#
$searchpath = "../data";

%data = (   "name"			=> "漢字あいうえお",
	    "business.title"		=> "Chief Paper Officer",
	    "business.address.line1" 	=> "17, Aviation Road",
	    "business.address.city"	=> "Paperfield",
	    "business.telephone.voice"	=> "phone +1 234 567-89",
	    "business.telephone.fax"	=> "fax +1 234 567-98",
	    "business.email"		=> "victor\@kraxi.com",
	    "business.homepage"		=> "www.kraxi.com"
	);

$p = PDF_new();

eval {
    if (PDF_begin_document($p, "businesscard.pdf", "") == -1){
	printf ("Error: %s\n", PDF_get_errmsg($p));
	exit;
    }

    # Set the search path for fonts and PDF files
    PDF_set_parameter($p, "SearchPath", $searchpath);

    # This line is required to avoid problems on Japanese systems
    PDF_set_parameter($p, "hypertextencoding", "winansi");

    PDF_set_info($p, "Creator", "businesscard.pl");
    PDF_set_info($p, "Author", "Thomas Merz");
    PDF_set_info($p, "Title", "PDFlib block processing sample (Perl)");

    $blockcontainer = PDF_open_pdi($p, $infile, "", 0);
    if ($blockcontainer == -1){
	printf ("Error: %s\n", PDF_get_errmsg($p));
	exit;
    }

    $page = PDF_open_pdi_page($p, $blockcontainer, 1, "");
    if ($page == -1){
	printf ("Error: %s\n", PDF_get_errmsg($p));
	exit;
    }

    PDF_begin_page_ext($p, 20, 20, "");		# dummy page size

    # This will adjust the page size to the block container's size.
    PDF_fit_pdi_page($p, $page, 0, 0, "adjustpage");

    # Fill all text blocks with dynamic data
    foreach $elem(keys %data){

#	if (PDF_fill_textblock($p, $page, $elem, $data{$elem},
#            "embedding encoding=winansi") == -1) {
#	    printf ("Warning: %s\n", PDF_get_errmsg($p));
#	}

	  $to = 'utf8';
	  $from = 'sjis';
	  $value = Jcode::convert($data{$elem}, $to, $from);

	  if (PDF_fill_textblock($p, $page, $elem, $value,
         "encoding UniJIS-UCS2-H textformat utf8 fontname HeiseiKakuGo-W5") == -1) {
		printf ("Warning: %s\n", PDF_get_errmsg($p));
	  }

    }

    PDF_end_page_ext($p, "");
    PDF_close_pdi_page($p, $page);

    PDF_end_document($p, "");
    PDF_close_pdi($p, $blockcontainer);
};
if ($@) {
    printf("businesscard: PDFlib Exception occurred:\n");
    printf(" $@\n");
    exit;
}
PDF_delete($p); 			# delete the PDFlib object

