/PHP-8.3/ext/gd/libgd/ |
H A D | gdxpm.c | 21 XpmImage image; in gdImageCreateFromXpm() local 34 number = image.ncolors; in gdImageCreateFromXpm() 36 if (!image.colorTable[i].c_color) { in gdImageCreateFromXpm() 41 if (!(im = gdImageCreate(image.width, image.height))) { in gdImageCreateFromXpm() 50 buf[0] = image.colorTable[i].c_color[1]; in gdImageCreateFromXpm() 53 buf[0] = image.colorTable[i].c_color[2]; in gdImageCreateFromXpm() 56 buf[0] = image.colorTable[i].c_color[3]; in gdImageCreateFromXpm() 125 pointer = (int *) image.data; in gdImageCreateFromXpm() 126 for (i = 0; i < image.height; i++) { in gdImageCreateFromXpm() 127 for (j = 0; j < image.width; j++) { in gdImageCreateFromXpm() [all …]
|
/PHP-8.3/ext/gd/tests/ |
H A D | bug40764.phpt | 7 $image=imagecreatetruecolor(400, 400); 9 $black = imagecolorallocate($image, 0, 0, 0); 12 imagefill($image, 0, 0, $white); 13 imagesetthickness($image, 10); 17 imageline($image, 0, 0, 392, 392, $black); 19 imagesetthickness($image, 1); 21 imageline($image, 200, 0, 200, 400, $red); 22 imageline($image, 0, 200, 400, 200, $red); 23 imageline($image, 0, 0, 392, 392, $red); 24 print_r(imagecolorat($image, 195, 0)); [all …]
|
H A D | imagecolorclosesthwb_basic_001.phpt | 7 // Create the size of image or blank image 8 $image = imagecreate(500, 200); 10 // Set the background color of image 11 $background_color = imagecolorallocate($image, 0, 24, 200); 13 // Set the text color of image 14 $text_color = imagecolorallocate($image, 255, 255, 255); 16 // Function to create image which contains string. 20 var_dump(imagecolorclosesthwb($image, 0, 115, 152)); // 0 21 var_dump(imagecolorclosesthwb($image, 0, 24, 200)); // 0 23 var_dump(imagecolorclosesthwb($image, 50, 0, 90)); // 0 [all …]
|
H A D | bug67447.phpt | 8 $image = imagecreatetruecolor(500, 500); 9 $red = imagecolorallocate($image, 255, 0, 0); 10 imagefill($image, 0, 0, $red); 11 $cropped = imagecrop($image, ['x' => 0, 'y' => 0, 'width' => 250, 'height' => 250]); 13 imagedestroy($image); 17 $image = imagecreate(500, 500); 18 imagecolorallocate($image, 0, 0, 255); // first palette color = background 19 $red = imagecolorallocate($image, 255, 0, 0); 20 imagefill($image, 0, 0, $red); 21 $cropped = imagecrop($image, ['x' => 0, 'y' => 0, 'width' => 250, 'height' => 250]); [all …]
|
H A D | imagefilltoborder_basic.phpt | 10 // Create a image 11 $image = imagecreatetruecolor( 100, 100 ); 14 imagefilledrectangle( $image, 0, 0, 100, 100, imagecolorallocate( $image, 255, 255, 255 ) ); 17 imageellipse( $image, 50, 50, 50, 50, imagecolorallocate( $image, 0, 0, 0 ) ); 20 imagefilltoborder( $image, 50, 50, imagecolorallocate( $image, 0, 0, 0 ), imagecolorallocate( $imag… 23 test_image_equals_file(__DIR__ . '/imagefilltoborder_basic.png', $image);
|
H A D | imagedashedline_basic.phpt | 16 // create a blank image 17 $image = imagecreatetruecolor(250, 250); 20 $bg = imagecolorallocate($image, 0, 0, 0); 23 $col_line = imagecolorallocate($image, 255, 0, 0); 26 imagedashedline($image, 100, 20, 100, 230, $col_line ); 30 imagepng($image, $dest); 33 $col1 = imagecolorat($image, 100, 230); 35 $col2 = imagecolorat($image, 5, 5); 37 $color1 = imagecolorsforindex($image, $col1); 38 $color2 = imagecolorsforindex($image, $col2); [all …]
|
H A D | imagepolygon_basic.phpt | 16 // create a blank image 17 $image = imagecreatetruecolor(400, 300); 20 $bg = imagecolorallocate($image, 0, 0, 0); 23 $col_poly = imagecolorallocate($image, 255, 0, 0); 26 imagepolygon($image, array ( 34 imagepng($image, $dest); 36 $col1 = imagecolorat($image, 100, 200); 37 $col2 = imagecolorat($image, 100, 100); 38 $color1 = imagecolorsforindex($image, $col1); 39 $color2 = imagecolorsforindex($image, $col2); [all …]
|
H A D | bug73614.phpt | 13 $image = imagecreatetruecolor(500, 500); 15 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF); 16 $navy = imagecolorallocate($image, 0x00, 0x00, 0x80); 17 $red = imagecolorallocate($image, 0xFF, 0x00, 0x00); 19 imagefilledarc($image, 250, 250, 500, 250, 0, 88, $white, IMG_ARC_PIE); 20 imagefilledarc($image, 250, 250, 500, 250, 88, 91 , $navy, IMG_ARC_PIE); 21 imagefilledarc($image, 250, 250, 500, 250, 91, 360 , $red, IMG_ARC_PIE); 23 test_image_equals_file(__DIR__ . '/bug73614.png', $image);
|
H A D | github_bug_215.phpt | 13 $image = imagecreate( 10, 10 ); 14 $bgd = imagecolorallocate( $image, 0, 0, 0 ); 15 $border = imagecolorallocate( $image, 255, 0, 0 ); 16 $fillcolor = imagecolorallocate( $image, 255, 0, 0 ); 19 imagefilltoborder( $image, 0,0, $border+10, $fillcolor); 23 imagefilltoborder( $image, 0,0, -$border, $fillcolor); 28 imagefilltoborder( $image, 0,0, $border, $fillcolor+10); 32 imagefilltoborder( $image, 0,0, $border, -$fillcolor); 37 imagefilltoborder( $image, 0,0, $border+10, $fillcolor+10);
|
H A D | imagegammacorrect_variation1.phpt | 2 Testing imagegammacorrect() of GD library with non TrueColor image 16 $image = imagecreate(150, 150); 18 $grey = imagecolorallocate($image,6,6,6); 19 $gray = imagecolorallocate($image,15,15,15); 21 $half = imagefilledarc ( $image, 75, 75, 70, 70, 0, 180, $grey, IMG_ARC_PIE ); 22 $half2 = imagefilledarc ( $image, 75, 75, 70, 70, 0, -180, $gray, IMG_ARC_PIE ); 24 $gamma = imagegammacorrect($image, 1, 5); 28 test_image_equals_file(__DIR__ . '/imagegammacorrect_variation1.png', $image);
|
H A D | imagesetthickness_basic.phpt | 13 // Create a 200x100 image 14 $image = imagecreatetruecolor(200, 100); 15 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF); 16 $black = imagecolorallocate($image, 0x00, 0x00, 0x00); 19 imagefilledrectangle($image, 0, 0, 299, 99, $white); 22 imagesetthickness($image, 5); 25 imagerectangle($image, 14, 14, 185, 85, $black); 28 test_image_equals_file(__DIR__ . '/imagesetthickness_basic.png', $image);
|
H A D | bug22544-mb.phpt | 7 $image = imageCreateTruecolor(640, 100); 8 $transparent = imageColorAllocate($image, 0, 0, 0); 9 $red = imageColorAllocate($image, 255, 50, 50); 10 imageColorTransparent($image, $transparent); 11 imageFilledRectangle($image, 0, 0, 640-1, 100-1, $transparent); 13 test_image_equals_file(__DIR__ . '/bug22544私はガラスを食べられます.png', $image);
|
H A D | bug22544.phpt | 7 $image = imageCreateTruecolor(640, 100); 8 $transparent = imageColorAllocate($image, 0, 0, 0); 9 $red = imageColorAllocate($image, 255, 50, 50); 10 imageColorTransparent($image, $transparent); 11 imageFilledRectangle($image, 0, 0, 640-1, 100-1, $transparent); 13 test_image_equals_file(__DIR__ . '/bug22544.png', $image);
|
H A D | imagegammacorrect_basic.phpt | 16 $image = imagecreatetruecolor(150, 150); 18 $grey = imagecolorallocate($image,6,6,6); 19 $gray = imagecolorallocate($image,15,15,15); 21 $half = imagefilledarc ( $image, 75, 75, 70, 70, 0, 180, $grey, IMG_ARC_PIE ); 22 $half2 = imagefilledarc ( $image, 75, 75, 70, 70, 0, -180, $gray, IMG_ARC_PIE ); 24 $gamma = imagegammacorrect($image, 1, 5); 28 test_image_equals_file(__DIR__ . '/imagegammacorrect_basic.png', $image);
|
H A D | imagetruecolortopalette_basic.phpt | 16 $image = imagecreatetruecolor(150, 150); 18 $a = imagecolorallocate($image,255,0,255); 19 $b = imagecolorallocate($image,0,255,255); 21 $half = imagefilledarc ( $image, 75, 75, 70, 70, 0, 180, $a, IMG_ARC_PIE ); 22 $half2 = imagefilledarc ( $image, 75, 55, 80, 70, 0, -180, $b, IMG_ARC_PIE ); 24 var_dump(imagetruecolortopalette($image, true, 2)); 27 test_image_equals_file(__DIR__ . '/imagetruecolortopalette_basic.png', $image);
|
H A D | func.inc | 116 * Returns the truecolor version of an image. 118 * @param resource $image 121 function test_to_truecolor($image) 123 if (imageistruecolor($image)) { 124 return $image; 126 $width = imagesx($image); 127 $height = imagesy($image); 135 * Saves an actual image to disk. 140 * @param resource $image 143 function save_actual_image($image) [all …]
|
H A D | imagerectangle_basic.phpt | 10 // Create a image 11 $image = imagecreatetruecolor( 100, 100 ); 14 imagerectangle( $image, 0, 0, 50, 50, imagecolorallocate($image, 255, 255, 255) ); 17 test_image_equals_file(__DIR__ . '/imagerectangle_basic.png', $image);
|
H A D | imageconvolution_basic.phpt | 10 $image = imagecreatetruecolor(180, 30); 12 // Writes the text and apply a gaussian blur on the image 13 imagestring($image, 5, 10, 8, 'Gaussian Blur Text', 0x00ff00); 21 imageconvolution($image, $gaussian, 16, 0); 24 test_image_equals_file(__DIR__ . '/imageconvolution_basic.png', $image);
|
/PHP-8.3/ext/standard/tests/image/ |
H A D | getimagesize_basic.phpt | 7 "GIF image file" => "200x100.gif", 46 -- GIF image file (200x100.gif) -- 61 string(9) "image/gif" 81 string(10) "image/jpeg" 88 -- PNG image file (200x100.png) -- 101 string(9) "image/png" 106 -- SWF image file (200x100.swf) -- 135 string(9) "image/bmp" 151 string(10) "image/tiff" 191 string(9) "image/jp2" [all …]
|
H A D | image_type_to_mime_type.phpt | 29 string(9) "image/bmp" 31 string(10) "image/webp" 33 string(9) "image/bmp" 35 string(10) "image/avif" 37 string(9) "image/bmp" 39 string(9) "image/jp2" 45 string(9) "image/gif" 51 string(9) "image/gif" 53 string(9) "image/iff" 55 string(9) "image/png" [all …]
|
H A D | image_type_to_mime_type_variation3.phpt | 21 string\(9\) "image\/gif" 24 string\(10\) "image\/jpeg" 27 string\(9\) "image\/png" 33 string\(9\) "image\/psd" 36 string\(9\) "image\/bmp" 39 string\(10\) "image\/tiff" 42 string\(10\) "image\/tiff" 48 string\(9\) "image\/jp2" 60 string\(9\) "image\/iff" 66 string\(9\) "image\/xbm" [all …]
|
H A D | image_type_to_mime_type_basic.phpt | 37 string(9) "image/gif" 38 string(10) "image/jpeg" 39 string(9) "image/png" 41 string(9) "image/psd" 42 string(9) "image/bmp" 43 string(10) "image/tiff" 44 string(10) "image/tiff" 46 string(9) "image/jp2" 49 string(9) "image/iff" 52 string(9) "image/xbm" [all …]
|
H A D | getimagesize.phpt | 40 string(9) "image/bmp" 55 string(10) "image/webp" 70 string(9) "image/bmp" 87 string(10) "image/avif" 102 string(9) "image/bmp" 119 string(9) "image/jp2" 170 string(9) "image/gif" 217 string(9) "image/gif" 232 string(9) "image/iff" 247 string(9) "image/png" [all …]
|
/PHP-8.3/ext/gd/ |
H A D | gd.stub.php | 488 function imagesetstyle(GdImage $image, array $style): bool {} argument 493 function imageistruecolor(GdImage $image): bool {} argument 497 function imagepalettetotruecolor(GdImage $image): bool {} argument 609 function imagegif(GdImage $image, $file = null): bool {} argument 638 function imagedestroy(GdImage $image): bool {} argument 684 function imagecolorstotal(GdImage $image): int {} argument 716 function imagesx(GdImage $image): int {} argument 718 function imagesy(GdImage $image): int {} argument 726 function imagegetclip(GdImage $image): array {} argument 759 function imageflip(GdImage $image, int $mode): bool {} argument [all …]
|
/PHP-8.3/ext/standard/tests/file/ |
H A D | bug69628.phpt | 21 file_put_contents("$dirname/image.jPg", ''); 22 file_put_contents("$dirname/image.gIf", ''); 23 file_put_contents("$dirname/image.png", ''); 37 unlink("$file_path/bug69628/image.jPg"); 38 unlink("$file_path/bug69628/image.gIf"); 39 unlink("$file_path/bug69628/image.png"); 46 string(%d) "%s/bug69628/image.gIf" 48 string(%d) "%s/bug69628/image.jPg"
|