Searched refs:imagecreatetruecolor (Results 1 – 25 of 145) sorted by relevance
123456
/PHP-8.0/ext/gd/tests/ |
H A D | imagecreatetruecolor_error2.phpt | 2 Testing imagecreatetruecolor(): error on out of bound parameters 8 if (!function_exists("imagecreatetruecolor")) die("skip GD Version not compatible"); 16 fn() => imagecreatetruecolor(-1, 30), 17 fn() => imagecreatetruecolor(30, -1) 22 !! [ValueError] imagecreatetruecolor(): Argument #1 ($width) must be greater than 0 23 !! [ValueError] imagecreatetruecolor(): Argument #2 ($height) must be greater than 0
|
H A D | imagecreatetruecolor_basic.phpt | 2 Testing imagecreatetruecolor() of GD library 8 if (!function_exists("imagecreatetruecolor")) die("skip GD Version not compatible"); 12 $image = imagecreatetruecolor(180, 30);
|
H A D | imagecolorallocate_basic.phpt | 8 if(!function_exists('imagecreatetruecolor')) { 9 die('skip imagecreatetruecolor function is not available'); 16 $im = imagecreatetruecolor(200, 200);
|
H A D | lines.phpt | 9 $im = imagecreatetruecolor(6,6); 25 $im = imagecreatetruecolor(6,6); 41 $im = imagecreatetruecolor(6,6); 62 $im = imagecreatetruecolor(6,6); 75 $im = imagecreatetruecolor(6,6); 88 $im = imagecreatetruecolor(6,6);
|
H A D | bug72730.phpt | 5 if (!function_exists("imagecreatetruecolor")) die("skip"); 12 $img = imagecreatetruecolor(1, 1);
|
H A D | imagescale_preserve_ratio.phpt | 10 $img = imagecreatetruecolor ( 256, 384); 20 $img = imagecreatetruecolor ( 384, 256); 30 $img = imagecreatetruecolor ( 256, 256);
|
H A D | bug72482.phpt | 9 $img = imagecreatetruecolor(13, 1007); 13 $img = imagecreatetruecolor(100, 100);
|
H A D | imageistruecolor_basic.phpt | 8 if (!function_exists("imagecreatetruecolor")) die("skip GD Version not compatible"); 12 $image = imagecreatetruecolor(180, 30);
|
H A D | bug72697.phpt | 5 if (!function_exists("imagecreatetruecolor")) die("skip"); 13 $img=imagecreatetruecolor(10, 10);
|
H A D | imagetruecolortopalette_error3.phpt | 8 if (!function_exists("imagecreatetruecolor")) die("skip GD Version not compatible"); 14 $image = imagecreatetruecolor(50, 50);
|
H A D | bug39273.phpt | 9 $small = imagecreatetruecolor(10, 10); 20 $img = imagecreatetruecolor($width, $height);
|
H A D | imagecolormatch_error3.phpt | 12 $ima = imagecreatetruecolor(110, 20); 14 $imb = imagecreatetruecolor(110, 20);
|
H A D | copyresized.phpt | 19 $im = imagecreatetruecolor(38,38); 39 $src_tc = imagecreatetruecolor(19,19); 47 $dst_tc = imagecreatetruecolor(38,38); 63 $dst_tc = imagecreatetruecolor(38,38);
|
H A D | imagetruecolortopalette_error4.phpt | 8 if (!function_exists("imagecreatetruecolor")) die("skip GD Version not compatible"); 14 $image = imagecreatetruecolor(50, 50);
|
H A D | gh8848.phpt | 9 $image1 = imagecreatetruecolor(1, 1); 10 $image2 = imagecreatetruecolor(1, 1);
|
H A D | bug53580.phpt | 18 $im0 = imagecreatetruecolor($w0, $h0); 21 $im1 = imagecreatetruecolor($w1, $h1);
|
H A D | imagetruecolortopalette_basic.phpt | 11 if (!function_exists("imagecreatetruecolor")) die("skip GD Version not compatible"); 15 $image = imagecreatetruecolor(150, 150);
|
H A D | imagesetthickness_basic.phpt | 8 if (!function_exists("imagecreatetruecolor")) die("skip GD Version not compatible"); 13 $image = imagecreatetruecolor(200, 100);
|
H A D | imagecrop_auto.phpt | 11 $im = imagecreatetruecolor(99, 99); 25 $im = imagecreatetruecolor(99, 99); 39 $im = imagecreatetruecolor(50, 50);
|
H A D | dashedlines.phpt | 9 $im = imagecreatetruecolor(6,6); 33 $im = imagecreatetruecolor(6,6); 54 $im = imagecreatetruecolor(6,6);
|
H A D | imagecolorallocate_variation5.phpt | 8 if(!function_exists('imagecreatetruecolor')) { 9 die('skip imagecreatetruecolor function is not available'); 18 $im = imagecreatetruecolor(200, 200);
|
H A D | copy.phpt | 10 $src_tc = imagecreatetruecolor(5,5); 17 $dst_tc = imagecreatetruecolor(5,5); 30 $src_tc = imagecreatetruecolor(5,5); 95 $dst_tc = imagecreatetruecolor(5,5);
|
H A D | bug72696.phpt | 9 $im = imagecreatetruecolor(10, 10);
|
H A D | bug39082.phpt | 11 $im = imagecreatetruecolor(1,1);
|
H A D | bug72227.phpt | 10 $img = imagecreatetruecolor ( 100, 100);
|
Completed in 14 milliseconds
123456