!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache. PHP/5.3.29 

uname -a: Linux tardis23.nocplanet.net 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024
x86_64
 

 

Safe-mode: OFF (not secure)

/opt/alt/pdflib-lite/usr/share/doc/alt-pdflib-lite/examples/php/examples.php5/   drwxr-xr-x
Free 978.83 GB of 1859.98 GB (52.63%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     starter_pvf.php (2.71 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
#!/usr/bin/perl
# $Id: starter_pvf.php,v 1.1.2.1 2007/12/29 23:26:06 rjs Exp $
# PDFlib Virtual File system (PVF):
# Create a PVF file which holds an image or PDF, and import the data from the
# PVF file
#
# This avoids disk access and is especially useful when the same image or PDF
# is imported multiply. For examples, images which sit in a database don't
# have to be written and re-read from disk, but can be passed to PDFlib
# directly in memory. A similar technique can be used for loading other data
# such as fonts, ICC profiles, etc.
#
# Required software: PDFlib Lite/PDFlib/PDFlib+PDI/PPS 7
# Required data: image file

#
# Helper function to read the content of a file into a buffer
# avoids incompatible systemcalls

function read_file($fname)
{
    
$fp fopen($fname"r");
    
$data fread ($fpfilesize($fname));
    
fclose($fp);
    return 
$data;
# read_file


# This is where the data files are. Adjust as necessary.
$searchpath "../data";
$title "PDFlib Virtual File System";

try {
    
# create a new PDFlib object
    
$p = new PDFlib();


    
$p->set_parameter("SearchPath"$searchpath);

    
# This means we must check return values of load_font() etc.
    
$p->set_parameter("errorpolicy""return");

    
# Set an output path according to the name of the topic
    
if ($p->begin_document("""") == 0) {
    die(
"Error: " .  $p->get_errmsg());
    }

    
$p->set_info("Creator""PDFlib Cookbook");
    
$buf $title ' $Revision: 1.1.2.1 $';
    
$p->set_info("Title"$buf);

    
# We just read some image data from a file; to really benefit
    # from using PVF read the data from a Web site or a database instead

    
$imagedata read_file("../data/PDFlib-logo.tif");

    
$p->create_pvf("/pvf/image"$imagedata"");

    
# Load the image from the PVF
    
$image $p->load_image("auto""/pvf/image""");
    if (
$image == 0) {
    die(
"Error: " .  $p->get_errmsg());
    }

    
# Fit the image on page 1
    
$p->begin_page_ext(595842"");

    
$p->fit_image($image350750"");

    
$p->end_page_ext("");

    
# Fit the image on page 2
    
$p->begin_page_ext(595842"");

    
$p->fit_image($image35050"");

    
$p->end_page_ext("");

    
# Delete the virtual file to free the allocated memory
    
$p->delete_pvf("/pvf/image");

    
$p->end_document("");

    
$buf $p->get_buffer();
    
$len strlen($buf);

    
header("Content-type: application/pdf");
    
header("Content-Length: $len");
    
header("Content-Disposition: inline; filename=hello.pdf");
    print 
$buf;

}
catch (
PDFlibException $e) {
    die(
"PDFlib exception occurred in hello sample:\n" .
        
"[" $e->get_errnum() . "] " $e->get_apiname() . ": " .
        
$e->get_errmsg() . "\n");
}
catch (
Exception $e) {
    die(
$e);
}

$p 0;

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.094 ]--