Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove unused Git attributes ident | Peter Kokot | 2018-07-25 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore. | ||||
* | year++ | Xinchen Hui | 2018-01-02 | 1 | -1/+1 |
| | |||||
* | Replace magic values with constants | Andreas Treichel | 2017-08-19 | 1 | -0/+9 |
| | |||||
* | Add support for webp in imagecreatefromstring | Andreas Treichel | 2017-07-30 | 1 | -0/+2 |
| | |||||
* | Implement #69606: Support BMPs (added in GD 2.1.0) | Christoph M. Becker | 2017-01-04 | 1 | -0/+8 |
| | | | | | | | | We add PHP bindings for libgd's features to read and write BMP files, which are available as of libgd 2.1.0. As PHP's bundled libgd doesn't yet include the respective features of the external libgd, we add these. | ||||
* | Update copyright headers to 2017 | Sammy Kaye Powers | 2017-01-02 | 1 | -1/+1 |
| | |||||
* | Merge branch 'pull-request/2135' | Joe Watkins | 2016-10-20 | 1 | -0/+2 |
|\ | |||||
| * | Add PHP bindings for setting and getting the image resolution | Christoph M. Becker | 2016-10-18 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | | | We expose the image resolution related GD functionality to userland by introducing `imageresolution()` as getter/setter. Given only the image argument, it returns the current resolution as indexed array. Given only a second argument, it sets the horizontal and vertical resolution to this value. Given three arguments, it sets the horizontal and vertical resolution to the given arguments, respectively. | ||||
* | | Implement request #33066: Add GD Image Function gdImageOpenPolygon() | Christoph M. Becker | 2016-10-02 | 1 | -0/+1 |
| | | | | | | | | | | | | gdImageOpenPolygon() has been introduced with líbgd 2.0.29, so we finally add a PHP binding for it, and port the respective libgd functionality to PHP's bundled libgd. | ||||
* | | Switch to libgd anti-aliased drawing API | Christoph M. Becker | 2016-10-02 | 1 | -2/+0 |
| | | | | | | | | | | | | Instead of rolling our own in the bundled libgd, we use libgd's anti-aliased drawing API. This way imageantialias() is also available, when built against a system libgd. | ||||
* | | Implement #52857: Access to gdImageSetClip() and gdImageGetClip() | Christoph M. Becker | 2016-07-23 | 1 | -0/+2 |
|/ | | | | | | We add the necessary PHP bindings for both functions which are available as of GD_2_0_12 (released 2006-04-05). The API of imagegetclip() is modelled according to imageftbbox(). | ||||
* | Merge branch 'PHP-5.6' into PHP-7.0 | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
|\ | | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016) | ||||
| * | Happy new year (Update copyright to 2016) | Lior Kaplan | 2016-01-01 | 1 | -1/+1 |
| | | |||||
| * | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | | |||||
* | | Remove the references to imageps*() after the T1Lib removal (Noticed by Ferenc) | Kalle Sommer Nielsen | 2015-06-19 | 1 | -10/+0 |
| | | |||||
* | | Remove T1Lib support (see #69698) | Kalle Sommer Nielsen | 2015-05-29 | 1 | -3/+0 |
| | | | | | | | | # Also removes imagepscopyfont() which was never available (commented out) | ||||
* | | cleanup the mod version macros, round 2 | Anatol Belski | 2015-03-23 | 1 | -0/+3 |
| | | |||||
* | | bump year | Xinchen Hui | 2015-01-15 | 1 | -1/+1 |
| | | |||||
* | | first shot remove TSRMLS_* things | Anatol Belski | 2014-12-13 | 1 | -2/+2 |
| | | |||||
* | | s/PHP 5/PHP 7/ | Johannes Schlüter | 2014-09-19 | 1 | -1/+1 |
|/ | |||||
* | Bump year | Xinchen Hui | 2014-01-03 | 1 | -1/+1 |
| | |||||
* | Merge branch 'PHP-5.4' into PHP-5.5 | Felipe Pena | 2013-10-20 | 1 | -1/+1 |
|\ | | | | | | | | | * PHP-5.4: - Fix extern declaration according to definition | ||||
| * | - Fix extern declaration according to definition | Felipe Pena | 2013-10-20 | 1 | -1/+1 |
| | | |||||
| * | Happy New Year | Xinchen Hui | 2013-01-01 | 1 | -1/+1 |
| | | |||||
| * | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 |
| | | |||||
* | | fix build with bundled libgd | Remi Collet | 2013-05-04 | 1 | -1/+1 |
| | | |||||
* | | Required GD >= 2.1.0 or GD bundled, this allows us to remove most of the #ifdef | Ondřej Surý | 2013-05-04 | 1 | -11/+3 |
| | | |||||
* | | Allow to use new GD-2.1.0 function from system library | Ondřej Surý | 2013-05-04 | 1 | -2/+5 |
| | | |||||
* | | gd: missing headers in previous | Remi Collet | 2013-04-24 | 1 | -1/+4 |
| | | |||||
* | | - add imageaffinematrixget and imagematrixconcat | Pierre Joye | 2013-03-20 | 1 | -1/+2 |
| | | |||||
* | | - add affine matrix helper for translate, scale, rotate and shear | Pierre Joye | 2013-03-20 | 1 | -0/+1 |
| | | |||||
* | | - add new interpolation method | Pierre Joye | 2013-03-20 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | . imagescale . imageaffine . replace imagerotate with new generic and optimized new implementations . imagesetinterpolationmethod, to set the default interpolation to be used with the new functions . add imagepalettetotruecolor | ||||
* | | - disable threshold for now, will enable it again using CIEDE2000 | Pierre Joye | 2013-03-01 | 1 | -0/+1 |
| | | |||||
* | | - add image crop support | Pierre Joye | 2013-02-28 | 1 | -0/+1 |
| | | |||||
* | | - add image flip API support | Pierre Joye | 2013-02-27 | 1 | -0/+1 |
| | | |||||
* | | Happy New Year | Xinchen Hui | 2013-01-01 | 1 | -1/+1 |
| | | |||||
* | | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 |
|/ | |||||
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 |
| | |||||
* | - initial webp support, rely on libpx, final version will be either w/o dep ↵ | Pierre Joye | 2010-10-04 | 1 | -1/+4 |
| | | | | or using libwebp (to be released by g) | ||||
* | Removed safe_mode | Kalle Sommer Nielsen | 2010-04-26 | 1 | -6/+4 |
| | | | | | | | * Removed ini options, safe_mode* * Removed --enable-safe-mode --with-exec-dir configure options on Unix * Updated extensions, SAPI's and core * php_get_current_user() is now declared in main.c, thrus no need to include safe_mode.h anymore | ||||
* | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 1 | -1/+1 |
| | |||||
* | - [DOC] always enable imagecolormatch | Pierre Joye | 2009-05-27 | 1 | -1/+2 |
| | |||||
* | - MFH: [DOC] always enable imagerotate (bundled or system gd) | Pierre Joye | 2009-05-27 | 1 | -1/+2 |
| | |||||
* | - [DOC] always enable imagefilter and imageconvolution, even when built ↵ | Pierre Joye | 2009-05-26 | 1 | -2/+3 |
| | | | | against system's gd | ||||
* | - silent warning | Pierre Joye | 2009-03-31 | 1 | -1/+3 |
| | |||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | Remove GD 1.0 support, still need to adjust the configure scripts to ↵ | Scott MacVicar | 2008-07-18 | 1 | -3/+1 |
| | | | | correctly check for a newer version | ||||
* | Remove freetype1 support | Scott MacVicar | 2008-07-18 | 1 | -1/+1 |
| | |||||
* | Improved PHP binary size and startup speed with GCC4 visibility control (Nuno) | Dmitry Stogov | 2008-01-30 | 1 | -2/+4 |
| | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| |