summaryrefslogtreecommitdiff
path: root/ext/pdf
Commit message (Collapse)AuthorAgeFilesLines
* fix PDF image open under Win32Daniel Beulshausen2000-11-211-5/+20
|
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+2
|
* Include header file for phpi_get_le_gd()Joey Smith2000-11-031-0/+1
|
* Include header file for php_file_le_fopen()Joey Smith2000-11-031-0/+1
|
* - BeautifyAndi Gutmans2000-11-011-5/+10
|
* Use zend_register_list_destructors_ex() instead.Andrei Zmievski2000-10-251-3/+3
|
* Mega-patch to get better resource information for modules.Andrei Zmievski2000-10-201-6/+8
| | | | | | | | | | | | | * Fixed a bug in zend_rsrc_list_get_rsrc_type() * Switched register_list_destructors() to use zend_register_list_destructors_ex() instead * Updated all relevant modules to provide the resource type name to register_list_destructors() call * Updated var_dump() to output resource type name instead of number @- Made resource type names visible, e.g. var_dump() and @ get_resource_type() display "file" for file resources. (Andrei)
* - added optional argument pdf_show_boxed() to determine if text isUwe Steinmann2000-10-101-13/+29
| | | | | actually shown or not.
* removed zendts.lib from link optionsDaniel Beulshausen2000-09-301-2/+2
|
* Fixed typo. Changed php3_error to php_error.foobar2000-09-081-2/+2
|
* Changed // to /* */ comments.foobar2000-09-081-17/+17
|
* - last parameter of pdf_get_parameter(), pdf_get_value() optionalUwe Steinmann2000-09-081-35/+63
| | | | | - fixes to make it compile with sun cc
* - updated on new zend_apiUwe Steinmann2000-08-281-551/+551
|
* deleted a few unnecceasary defines and added the Release_TS_Inline path to ↵Daniel Beulshausen2000-08-241-4/+4
| | | | the libpath
* projectfile to build the pdf extensionDaniel Beulshausen2000-08-221-0/+114
|
* Setting "compatibility" parameter requires having a PDF structure thatJoey Smith2000-07-231-0/+5
| | | | | | | | | | | | has NOT had PDF_open_*() called on it, according to the documentation. There is not currently any way to obtain such from user-land in PHP. @ Catch users trying to set "compatibility" parameter, which is not @ supported from user-land. # # Not sure this is the best way to do this... # Uwe, could you please double check this?
* - Support for pdflib 3.01Uwe Steinmann2000-07-051-19/+19
|
* Change header protection macros to conform to standard.Sascha Schumann2000-07-021-3/+3
| | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation.
* Added note about creating PDF documents in memory.Joey Smith2000-06-281-2/+6
| | | | | This is not quite complete, due to a bug in pdflib 3.0.
* Stop including dl/phpdl.h.Sascha Schumann2000-06-241-1/+0
|
* - minor changesUwe Steinmann2000-06-191-1/+1
|
* - More #if WIN32|WINNT -> #ifdef PHP_WIN32 conversionsAndi Gutmans2000-06-151-1/+1
|
* - fixed compilation errorUwe Steinmann2000-06-071-3/+3
|
* - more removal of obsolete pdflib functions, but no changes to the phpUwe Steinmann2000-06-071-3/+3
| | | | | api
* - new function pdf_set_info() to replace pdf_set_info_xxx()Uwe Steinmann2000-06-072-6/+36
|
* - add functions pdf_get_value(), pdf_set_value(), pdf_get_parameter(),Uwe Steinmann2000-06-062-16/+139
| | | | | | pdf_set_border_dash() - some prototype fixes
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-79/+79
|
* Use #ifdef COMPILE_DL_EXTNAME solely.Sascha Schumann2000-05-231-1/+1
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-1/+1
|
* - fixed bug #4076Uwe Steinmann2000-05-181-3/+4
|
* #if COMPILE_DLSascha Schumann2000-05-021-1/+1
| | | | | | | becomes #if defined(COMPILE_DL) || defined(COMPILE_DL_EXTENSION_NAME)
* Replace the various get_module() functions with a uniformSascha Schumann2000-05-021-1/+1
| | | | | ZEND_GET_MODULE(name) macro.
* Remove trailing empty linesSascha Schumann2000-05-011-4/+0
|
* Large test commit IVSascha Schumann2000-05-011-0/+1
|
* Large commit test IIISascha Schumann2000-05-011-0/+3
|
* Improved in-tree shared libraries build systemSascha Schumann2000-05-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following new/revived shared modules are available now: ... MySQL (*) ... PCRE (*) ... Session ... SWF (*) capable of using bundled library or external library All changes: The m4 macro PHP_EXTENSION was revamped. Uses LIB_BUILD now. This effectively means that all extensions have to use dynlib. ext/mysql/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/pcre/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/ext_skel was changed to reflect that more modules should be compileable as shared module. ext/Makefile.in has been simplified enormously. Dependencies are now stored in the build tree. Empty dependencies are not generated by buildconf anymore. They are now dynamically created during the build process. Implicit rules for .S were removed. The NO_RECURSION feature was removed. "libs.mk" has been added to all cvsignore files in ext.
* Overall UNIX build system improvements:Sascha Schumann2000-04-301-7/+1
| | | | | | | | | * Makefile header is now completely dynamic * Absolute paths in (top_)?(src|build)dir and VPATH (fixes Tru64 support) * VPATH does not contain variables anymore (fixes UnixWare support)
* recommended changesColin Viebrock2000-04-071-1/+1
|
* phpinfo() prettyingColin Viebrock2000-04-061-5/+16
|
* - added pdf_open_image_file() to read jpeg, tiff, gif and png imagesUwe Steinmann2000-03-282-4/+76
|
* Some white-space changesSascha Schumann2000-03-261-1/+1
|
* gd-jpeg supportRasmus Lerdorf2000-03-131-1/+1
| | | | | @Add GD-JPEG Support (Rasmus)
* - ups, fixed stupid compile errorsUwe Steinmann2000-03-091-4/+1
|
* - dropped support for version of pdflib < 3.0Uwe Steinmann2000-03-092-190/+32
| | | | | - better detection of libs required for pdflib
* - support for pdflib 3.0Uwe Steinmann2000-03-071-8/+2
|
* - quick hack to support pdflib 3.0 (not tested)Uwe Steinmann2000-03-071-7/+7
|
* - More function in php moduleUwe Steinmann2000-02-262-1/+103
|
* More protos.Egon Schmid2000-02-231-6/+1
|
* Changed here also.Egon Schmid2000-02-231-1/+1
|
* - pdf_set_text_matrix() disappeared in pdflib 2.30. Put in another ifdefUwe Steinmann2000-02-212-0/+6
| | | | | - small fix in testdom to suppress error msg.