php-src/ext/gd/tests/jpeg2wbmp_error3.phpt

44 lines
1.1 KiB
Plaintext
Raw Normal View History

2009-07-01 00:51:26 +00:00
--TEST--
Test jpeg2wbmp() function : wrong destination filename param
--CREDITS--
Levi Fukumori <levi [at] fukumori [dot] com [dot] br>
#testfest PHPSP on 2009-06-20
--SKIPIF--
<?php
if(!extension_loaded('gd')) {
die('skip gd extension is not loaded');
}
if(!function_exists('jpeg2wbmp')) {
die('skip jpeg2wbmp function is not available');
}
?>
--FILE--
<?php
// Create a blank image and add some text
$im = imagecreatetruecolor(120, 20);
$text_color = imagecolorallocate($im, 255, 255, 255);
imagestring($im, 1, 5, 5, 'A Simple Text String', $text_color);
2009-07-01 02:32:10 +00:00
$file = dirname(__FILE__) .'/simpletext.jpg';
2009-07-01 00:51:26 +00:00
// Save the image as 'simpletext.jpg'
2009-07-01 02:32:10 +00:00
imagejpeg($im, $file);
2009-07-01 00:51:26 +00:00
// Free up memory
imagedestroy($im);
2009-07-01 02:32:10 +00:00
jpeg2wbmp($file, '', 20, 120, 8);
jpeg2wbmp($file, null, 20, 120, 8);
jpeg2wbmp($file, false, 20, 120, 8);
2009-07-01 00:51:26 +00:00
?>
--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
Warning: jpeg2wbmp(): Unable to open '' for writing in %s on line %d
--CLEAN--
<?php
2009-07-01 02:32:10 +00:00
unlink(dirname(__FILE__) .'/simpletext.jpg');
?>