Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- Font charmap order is deterministic based on order in the font, use the selected ..
Decoded Output download
--TEST--
Font charmap order is deterministic based on order in the font, use the selected encoding
--EXTENSIONS--
gd
--SKIPIF--
<?php
if(!function_exists('imagettftext')) die('skip imagettftext() not available');
if(gd_info()['JIS-mapped Japanese Font Support']) die('skip JIS-mapped Japanese Font Support not supported');
?>
--FILE--
<?php
// this is an Apache Licensed font, see separate LICENSE file
$font = __DIR__.'/Rochester-Regular.otf';
// thank you Helgi
$sample_string = "";
$im = imagecreatetruecolor(
100,
80
);
$white = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle(
$im,
0,
0,
100,
80,
$white
);
imagettftext(
$im,
45,
0,
15,
60,
$black,
$font,
$sample_string
);
$w = imagesx($im);
$h = imagesy($im);
$black_pixels = 0;
for ($y = 0; $y < $h; $y++) {
for ($x = 0; $x < $w; $x++) {
$rgb = imagecolorat($im, $x, $y);
if ($rgb === 0) {
++$black_pixels;
}
}
}
if ($black_pixels >= 10) {
printf("SUCCESS %d black pixels
", $black_pixels);
} else {
printf("FAIL %d black pixels
", $black_pixels);
}
imagedestroy($im);
?>
--EXPECTF--
SUCCESS %d black pixels
Did this file decode correctly?
Original Code
--TEST--
Font charmap order is deterministic based on order in the font, use the selected encoding
--EXTENSIONS--
gd
--SKIPIF--
<?php
if(!function_exists('imagettftext')) die('skip imagettftext() not available');
if(gd_info()['JIS-mapped Japanese Font Support']) die('skip JIS-mapped Japanese Font Support not supported');
?>
--FILE--
<?php
// this is an Apache Licensed font, see separate LICENSE file
$font = __DIR__.'/Rochester-Regular.otf';
// thank you Helgi
$sample_string = "\xC3\x9E\xC3\xB6";
$im = imagecreatetruecolor(
100,
80
);
$white = imagecolorallocate($im, 255, 255, 255);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle(
$im,
0,
0,
100,
80,
$white
);
imagettftext(
$im,
45,
0,
15,
60,
$black,
$font,
$sample_string
);
$w = imagesx($im);
$h = imagesy($im);
$black_pixels = 0;
for ($y = 0; $y < $h; $y++) {
for ($x = 0; $x < $w; $x++) {
$rgb = imagecolorat($im, $x, $y);
if ($rgb === 0) {
++$black_pixels;
}
}
}
if ($black_pixels >= 10) {
printf("SUCCESS %d black pixels\n", $black_pixels);
} else {
printf("FAIL %d black pixels\n", $black_pixels);
}
imagedestroy($im);
?>
--EXPECTF--
SUCCESS %d black pixels
Function Calls
None |
Stats
MD5 | 86fb5b8c78aee1d7ffac5a9f037d5f5e |
Eval Count | 0 |
Decode Time | 89 ms |