Page MenuHomeDevCentral

Enable Freetype, Webp and XPM support in GD
ClosedPublic

Authored by dereckson on Nov 13 2018, 15:37.
Tags
None
Referenced Files
F25115996: D2019.diff
Tue, Mar 31, 01:21
Unknown Object (File)
Sun, Mar 29, 12:04
Unknown Object (File)
Sun, Mar 29, 11:12
Unknown Object (File)
Sun, Mar 29, 10:37
Unknown Object (File)
Sat, Mar 28, 09:57
Unknown Object (File)
Fri, Mar 27, 21:16
Unknown Object (File)
Thu, Mar 26, 18:35
Unknown Object (File)
Wed, Mar 25, 22:53
Subscribers
None

Details

Summary

Required by Pixelfed

Ref T1481

Test Plan

Call the following functions:

  • imagefttext()
  • imagecreatefromxpm()
  • imagewebp()

Diff Detail

Repository
rDPHPVIIFPM Docker image to install nginx, PHP 7 and fpm
Lint
No Lint Coverage
Unit
No Test Coverage
Branch
gd (branched from master)
Build Status
Buildable 3142
Build 3390: arc lint + arc unit

Event Timeline

dereckson created this revision.

imagefttext() and imagecreatefromxpm() ok

imagewebp() still undefined

It seems XPM and WebP are two different formats.

>>> gd_info()
=> [
     "GD Version" => "bundled (2.1.0 compatible)",
     "FreeType Support" => true,
     "FreeType Linkage" => "with freetype",
     "GIF Read Support" => true,
     "GIF Create Support" => true,
     "JPEG Support" => true,
     "PNG Support" => true,
     "WBMP Support" => true,
     "XPM Support" => true,
     "XBM Support" => true,
     "WebP Support" => false,
     "BMP Support" => true,
     "JIS-mapped Japanese Font Support" => false,
   ]
This revision is now accepted and ready to land.Nov 13 2018, 19:21
This revision was automatically updated to reflect the committed changes.