Big Faceless PDF Library 2.11.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Big Faceless PDF Library 2.11.2 (Default branch)
# 1  
Old 01-23-2009
Big Faceless PDF Library 2.11.2 (Default branch)

ImageThe Big Faceless PDF Library is a Java classlibrary for creating PDF documents. The ExtendedEdition offers the ability to create and editAcroForms, PDF's answer to the HTML form. LikeHTML forms, PDF forms can contain text boxes,radio buttons, and can call JavaScript functions.The Extended Edition also includes a PDF readerfor importing and editing, along with FDF support,verification for digital signatures and textextraction. Both variations offer full Unicodesupport, encryption, embedded TrueType and Type1 fonts, barcodes, hyperlinks, and spot and calibratedcolor.License: Other/Proprietary License with Free TrialChanges:
This version fixes an issue with IBM versions ofJava that was introduced in the previous release.A change of obfuscator clashed with a bug in somereleases of the JRE supplied with Websphere. Thereare fixes for customers reading and writing PDFsto the same File. A memory leak in the Viewer hasbeen fixed. A number of other bugs have beenfixed, including a Swing screen corruption issuethat sometimes occurred on Windows.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
PDF::API2::Basic::PDF::Filter(3pm)			User Contributed Perl Documentation			PDF::API2::Basic::PDF::Filter(3pm)

NAME
PDF::API2::Basic::PDF::Filter - Abstract superclass for PDF stream filters SYNOPSIS
$f = PDF::API2::Basic::PDF::Filter->new; $str = $f->outfilt($str, 1); print OUTFILE $str; while (read(INFILE, $dat, 4096)) { $store .= $f->infilt($dat, 0); } $store .= $f->infilt("", 1); DESCRIPTION
A Filter object contains state information for the process of outputting and inputting data through the filter. The precise state information stored is up to the particular filter and may range from nothing to whole objects created and destroyed. Each filter stores different state information for input and output and thus may handle one input filtering process and one output filtering process at the same time. METHODS
PDF::API2::Basic::PDF::Filter->new Creates a new filter object with empty state information ready for processing data both input and output. $dat = $f->infilt($str, $isend) Filters from output to input the data. Notice that $isend == 0 implies that there is more data to come and so following it $f may contain state information (usually due to the break-off point of $str not being tidy). Subsequent calls will incorporate this stored state information. $isend == 1 implies that there is no more data to follow. The final state of $f will be that the state information is empty. Error messages are most likely to occur here since if there is required state information to be stored following this data, then that would imply an error in the data. $str = $f->outfilt($dat, $isend) Filter stored data ready for output. Parallels "infilt". NAME
PDF::API2::Basic::PDF::ASCII85Decode - Ascii85 filter for PDF streams. Inherits from PDF::API2::Basic::PDF::Filter NAME
PDF::API2::Basic::PDF::RunLengthDecode - Run Length encoding filter for PDF streams. Inherits from PDF::API2::Basic::PDF::Filter NAME
PDF::API2::Basic::PDF::ASCIIHexDecode - Ascii Hex encoding (very inefficient) for PDF streams. Inherits from PDF::API2::Basic::PDF::Filter perl v5.14.2 2011-03-10 PDF::API2::Basic::PDF::Filter(3pm)