Page MenuHomeDevCentral

Enable Freetype, Webp and XPM support in GD
ClosedPublic

Authored by dereckson on Nov 13 2018, 15:37.
Tags
None
Referenced Files
F6926786: D2019.id5094.diff
Thu, Apr 17, 11:47
Unknown Object (File)
Wed, Apr 16, 17:28
Unknown Object (File)
Wed, Apr 16, 13:36
Unknown Object (File)
Sun, Apr 13, 17:50
Unknown Object (File)
Sun, Apr 13, 14:35
Unknown Object (File)
Sun, Apr 13, 04:03
Unknown Object (File)
Sat, Apr 12, 22:50
Unknown Object (File)
Thu, Apr 10, 22:01
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.