mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
- Three of our gd tests could be skipped with a message about requiring
bundled GD, but those tests don't actually require bundled GD. We
update the messages to mention the specific functions that are
required.
- add SKIPIF stanzas for missing PNG support
The bundled libgd always has PNG support, but an external one may not.
- imagerotate() is always available
Following 59ec80c5, the imagerotate() function is always available. We
may therefore remove its function_exists() checks without harm.
close GH-17894
28 lines
924 B
PHP
28 lines
924 B
PHP
--TEST--
|
|
Bug #48732 (TTF Bounding box wrong for letters below baseline)
|
|
--EXTENSIONS--
|
|
gd
|
|
--SKIPIF--
|
|
<?php
|
|
if(!function_exists('imagefttext')) die('skip imagefttext() not available');
|
|
if (substr(PHP_OS, 0, 3) == 'WIN') die('skip UTF-8 font file names not yet supported on Windows');
|
|
if (!(imagetypes() & IMG_PNG)) {
|
|
die("skip No PNG support");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$cwd = __DIR__;
|
|
$font = "$cwd/Tuffy私はガラスを食べられます.ttf";
|
|
$g = imagecreate(100, 50);
|
|
$bgnd = imagecolorallocate($g, 255, 255, 255);
|
|
$black = imagecolorallocate($g, 0, 0, 0);
|
|
$bbox = imagettftext($g, 12, 0, 0, 20, $black, $font, "ABCEDFGHIJKLMN\nopqrstu\n");
|
|
imagepng($g, "$cwd/bug48732私はガラスを食べられます.png");
|
|
echo 'Left Bottom: (' . $bbox[0] . ', ' . $bbox[1] . ')';
|
|
?>
|
|
--CLEAN--
|
|
<?php @unlink(__DIR__ . '/bug48732私はガラスを食べられます.png'); ?>
|
|
--EXPECT--
|
|
Left Bottom: (0, 46)
|