mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00
- Fixed tests
This commit is contained in:
parent
bb6bb49671
commit
9c916aa98c
6 changed files with 46 additions and 32 deletions
|
@ -19,14 +19,17 @@ $im = imagecreatetruecolor(120, 20);
|
||||||
$text_color = imagecolorallocate($im, 255, 255, 255);
|
$text_color = imagecolorallocate($im, 255, 255, 255);
|
||||||
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
|
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
|
||||||
|
|
||||||
|
$file = dirname(__FILE__) .'/simpletext.jpg';
|
||||||
|
$file2 = dirname(__FILE__) .'/simpletext.wbmp';
|
||||||
|
|
||||||
// Save the image as 'simpletext.jpg'
|
// Save the image as 'simpletext.jpg'
|
||||||
imagejpeg($im, 'simpletext.jpg');
|
imagejpeg($im, $file);
|
||||||
|
|
||||||
// Free up memory
|
// Free up memory
|
||||||
imagedestroy($im);
|
imagedestroy($im);
|
||||||
|
|
||||||
jpeg2wbmp('simpletext.jpg', 'simpletext.wbmp', 20, 120, 9);
|
jpeg2wbmp($file, $file2, 20, 120, 9);
|
||||||
jpeg2wbmp('simpletext.jpg', 'simpletext.wbmp', 20, 120, -1);
|
jpeg2wbmp($file', $file2, 20, 120, -1);
|
||||||
?>
|
?>
|
||||||
--EXPECTF--
|
--EXPECTF--
|
||||||
Warning: jpeg2wbmp(): Invalid threshold value '9' in %s on line %d
|
Warning: jpeg2wbmp(): Invalid threshold value '9' in %s on line %d
|
||||||
|
@ -34,5 +37,6 @@ Warning: jpeg2wbmp(): Invalid threshold value '9' in %s on line %d
|
||||||
Warning: jpeg2wbmp(): Invalid threshold value '-1' in %s on line %d
|
Warning: jpeg2wbmp(): Invalid threshold value '-1' in %s on line %d
|
||||||
--CLEAN--
|
--CLEAN--
|
||||||
<?php
|
<?php
|
||||||
unlink('simpletext.jpg');
|
unlink(dirname(__FILE__) .'/simpletext.jpg');
|
||||||
|
unlink(dirname(__FILE__) .'/simpletext.wbmp');
|
||||||
?>
|
?>
|
|
@ -14,9 +14,10 @@ if(!function_exists('jpeg2wbmp')) {
|
||||||
?>
|
?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
jpeg2wbmp('', 'simpletext.wbmp', 20, 120, 8);
|
$file = dirname(__FILE__) .'/simpletext.wbmp';
|
||||||
jpeg2wbmp(null, 'simpletext.wbmp', 20, 120, 8);
|
jpeg2wbmp('', $file, 20, 120, 8);
|
||||||
jpeg2wbmp(false, 'simpletext.wbmp', 20, 120, 8);
|
jpeg2wbmp(null, $file, 20, 120, 8);
|
||||||
|
jpeg2wbmp(false, $file, 20, 120, 8);
|
||||||
?>
|
?>
|
||||||
--EXPECTF--
|
--EXPECTF--
|
||||||
Warning: jpeg2wbmp(): Unable to open '' for reading in %s on line %d
|
Warning: jpeg2wbmp(): Unable to open '' for reading in %s on line %d
|
||||||
|
@ -26,5 +27,5 @@ Warning: jpeg2wbmp(): Unable to open '' for reading in %s on line %d
|
||||||
Warning: jpeg2wbmp(): Unable to open '' for reading in %s on line %d
|
Warning: jpeg2wbmp(): Unable to open '' for reading in %s on line %d
|
||||||
--CLEAN--
|
--CLEAN--
|
||||||
<?php
|
<?php
|
||||||
unlink('simpletext.jpg');
|
unlink(dirname(__FILE__) .'/simpletext.wbmp');
|
||||||
?>
|
?>
|
|
@ -19,15 +19,17 @@ $im = imagecreatetruecolor(120, 20);
|
||||||
$text_color = imagecolorallocate($im, 255, 255, 255);
|
$text_color = imagecolorallocate($im, 255, 255, 255);
|
||||||
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
|
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
|
||||||
|
|
||||||
|
$file = dirname(__FILE__) .'/simpletext.jpg';
|
||||||
|
|
||||||
// Save the image as 'simpletext.jpg'
|
// Save the image as 'simpletext.jpg'
|
||||||
imagejpeg($im, 'simpletext.jpg');
|
imagejpeg($im, $file);
|
||||||
|
|
||||||
// Free up memory
|
// Free up memory
|
||||||
imagedestroy($im);
|
imagedestroy($im);
|
||||||
|
|
||||||
jpeg2wbmp('simpletext.jpg', '', 20, 120, 8);
|
jpeg2wbmp($file, '', 20, 120, 8);
|
||||||
jpeg2wbmp('simpletext.jpg', null, 20, 120, 8);
|
jpeg2wbmp($file, null, 20, 120, 8);
|
||||||
jpeg2wbmp('simpletext.jpg', false, 20, 120, 8);
|
jpeg2wbmp($file, false, 20, 120, 8);
|
||||||
?>
|
?>
|
||||||
--EXPECTF--
|
--EXPECTF--
|
||||||
Warning: jpeg2wbmp(): Unable to open '' for writing in %s on line %d
|
Warning: jpeg2wbmp(): Unable to open '' for writing in %s on line %d
|
||||||
|
@ -37,5 +39,5 @@ Warning: jpeg2wbmp(): Unable to open '' for writing in %s on line %d
|
||||||
Warning: jpeg2wbmp(): Unable to open '' for writing in %s on line %d
|
Warning: jpeg2wbmp(): Unable to open '' for writing in %s on line %d
|
||||||
--CLEAN--
|
--CLEAN--
|
||||||
<?php
|
<?php
|
||||||
unlink('simpletext.jpg');
|
unlink(dirname(__FILE__) .'/simpletext.jpg');
|
||||||
?>
|
?>
|
|
@ -19,14 +19,17 @@ $im = imagecreatetruecolor(120, 20);
|
||||||
$text_color = imagecolorallocate($im, 255, 255, 255);
|
$text_color = imagecolorallocate($im, 255, 255, 255);
|
||||||
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
|
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
|
||||||
|
|
||||||
|
$file = dirname(__FILE__) .'/simpletext.png';
|
||||||
|
$file2 = dirname(__FILE__) .'/simpletext.wbmp';
|
||||||
|
|
||||||
// Save the image as 'simpletext.png'
|
// Save the image as 'simpletext.png'
|
||||||
imagepng($im, 'simpletext.png');
|
imagepng($im, $file);
|
||||||
|
|
||||||
// Free up memory
|
// Free up memory
|
||||||
imagedestroy($im);
|
imagedestroy($im);
|
||||||
|
|
||||||
png2wbmp('simpletext.png', 'simpletext.wbmp', 20, 120, 9);
|
png2wbmp($file, $file2, 20, 120, 9);
|
||||||
png2wbmp('simpletext.png', 'simpletext.wbmp', 20, 120, -1);
|
png2wbmp($file, $file2, 20, 120, -1);
|
||||||
?>
|
?>
|
||||||
--EXPECTF--
|
--EXPECTF--
|
||||||
Warning: png2wbmp(): Invalid threshold value '9' in %s on line %d
|
Warning: png2wbmp(): Invalid threshold value '9' in %s on line %d
|
||||||
|
@ -34,5 +37,6 @@ Warning: png2wbmp(): Invalid threshold value '9' in %s on line %d
|
||||||
Warning: png2wbmp(): Invalid threshold value '-1' in %s on line %d
|
Warning: png2wbmp(): Invalid threshold value '-1' in %s on line %d
|
||||||
--CLEAN--
|
--CLEAN--
|
||||||
<?php
|
<?php
|
||||||
unlink('simpletext.png');
|
unlink(dirname(__FILE__) .'/simpletext.png');
|
||||||
|
unlink(dirname(__FILE__) .'/simpletext.wbmp');
|
||||||
?>
|
?>
|
|
@ -14,9 +14,10 @@ if(!function_exists('png2wbmp')) {
|
||||||
?>
|
?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
png2wbmp('', 'simpletext.wbmp', 20, 120, 8);
|
$file = dirname(__FILE__) .'/simpletext.wbmp';
|
||||||
png2wbmp(null, 'simpletext.wbmp', 20, 120, 8);
|
png2wbmp('', $file, 20, 120, 8);
|
||||||
png2wbmp(false, 'simpletext.wbmp', 20, 120, 8);
|
png2wbmp(null, $file, 20, 120, 8);
|
||||||
|
png2wbmp(false, $file, 20, 120, 8);
|
||||||
?>
|
?>
|
||||||
--EXPECTF--
|
--EXPECTF--
|
||||||
Warning: png2wbmp(): Unable to open '' for reading in %s on line %d
|
Warning: png2wbmp(): Unable to open '' for reading in %s on line %d
|
||||||
|
@ -26,5 +27,5 @@ Warning: png2wbmp(): Unable to open '' for reading in %s on line %d
|
||||||
Warning: png2wbmp(): Unable to open '' for reading in %s on line %d
|
Warning: png2wbmp(): Unable to open '' for reading in %s on line %d
|
||||||
--CLEAN--
|
--CLEAN--
|
||||||
<?php
|
<?php
|
||||||
unlink('simpletext.jpg');
|
unlink(dirname(__FILE__) .'/simpletext.wbmp');
|
||||||
?>
|
?>
|
|
@ -19,15 +19,17 @@ $im = imagecreatetruecolor(120, 20);
|
||||||
$text_color = imagecolorallocate($im, 255, 255, 255);
|
$text_color = imagecolorallocate($im, 255, 255, 255);
|
||||||
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
|
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
|
||||||
|
|
||||||
|
$file = dirname(__FILE__) .'/simpletext.png';
|
||||||
|
|
||||||
// Save the image as 'simpletext.png'
|
// Save the image as 'simpletext.png'
|
||||||
imagepng($im, 'simpletext.png');
|
imagepng($im, $file);
|
||||||
|
|
||||||
// Free up memory
|
// Free up memory
|
||||||
imagedestroy($im);
|
imagedestroy($im);
|
||||||
|
|
||||||
png2wbmp('simpletext.png', '', 20, 120, 8);
|
png2wbmp($file, '', 20, 120, 8);
|
||||||
png2wbmp('simpletext.png', null, 20, 120, 8);
|
png2wbmp($file, null, 20, 120, 8);
|
||||||
png2wbmp('simpletext.png', false, 20, 120, 8);
|
png2wbmp($file, false, 20, 120, 8);
|
||||||
?>
|
?>
|
||||||
--EXPECTF--
|
--EXPECTF--
|
||||||
Warning: png2wbmp(): Unable to open '' for writing in %s on line %d
|
Warning: png2wbmp(): Unable to open '' for writing in %s on line %d
|
||||||
|
@ -37,5 +39,5 @@ Warning: png2wbmp(): Unable to open '' for writing in %s on line %d
|
||||||
Warning: png2wbmp(): Unable to open '' for writing in %s on line %d
|
Warning: png2wbmp(): Unable to open '' for writing in %s on line %d
|
||||||
--CLEAN--
|
--CLEAN--
|
||||||
<?php
|
<?php
|
||||||
unlink('simpletext.png');
|
unlink(dirname(__FILE__) .'/simpletext.png');
|
||||||
?>
|
?>
|
Loading…
Add table
Add a link
Reference in a new issue