/PHP-5.5/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-5.5/ext/gd/tests/ |
H A D | bug40764.phpt | 9 $image=imagecreatetruecolor(400, 400); 11 $black = imagecolorallocate($image, 0, 0, 0); 14 imagefill($image, 0, 0, $white); 15 imagesetthickness($image, 10); 19 imageline($image, 0, 0, 392, 392, $black); 21 imagesetthickness($image, 1); 23 imageline($image, 200, 0, 200, 400, $red); 24 imageline($image, 0, 200, 400, 200, $red); 25 imageline($image, 0, 0, 392, 392, $red); 26 print_r(imagecolorat($image, 195, 0)); [all …]
|
H A D | imagefilltoborder_basic.phpt | 12 // Create a image 13 $image = imagecreatetruecolor( 100, 100 ); 16 imagefilledrectangle( $image, 0, 0, 100, 100, imagecolorallocate( $image, 255, 255, 255 ) ); 19 imageellipse( $image, 50, 50, 50, 50, imagecolorallocate( $image, 0, 0, 0 ) ); 22 imagefilltoborder( $image, 50, 50, imagecolorallocate( $image, 0, 0, 0 ), imagecolorallocate( $imag… 25 imagepng( $image, null, 9 );
|
H A D | imagepolygon_basic.phpt | 13 * Source code: ext/standard/image.c 22 // create a blank image 23 $image = imagecreatetruecolor(400, 300); 26 $bg = imagecolorallocate($image, 0, 0, 0); 32 imagepolygon($image, array ( 41 imagepng($image, $dest); 43 $col1 = imagecolorat($image, 100, 200); 44 $col2 = imagecolorat($image, 100, 100); 45 $color1 = imagecolorsforindex($image, $col1); 46 $color2 = imagecolorsforindex($image, $col2); [all …]
|
H A D | imagedashedline_basic.phpt | 14 * Source code: ext/standard/image.c 23 // create a blank image 24 $image = imagecreatetruecolor(250, 250); 27 $bg = imagecolorallocate($image, 0, 0, 0); 30 $col_line = imagecolorallocate($image, 255, 0, 0); 37 imagepng($image, $dest); 40 $col1 = imagecolorat($image, 100, 230); 42 $col2 = imagecolorat($image, 5, 5); 44 $color1 = imagecolorsforindex($image, $col1); 45 $color2 = imagecolorsforindex($image, $col2); [all …]
|
H A D | imagefilltoborder_error2.phpt | 12 // Create a image 13 $image = imagecreatetruecolor( 100, 100 ); 16 imagefilledrectangle( $image, 0, 0, 100, 100, imagecolorallocate( $image, 255, 255, 255 ) ); 19 imageellipse( $image, 50, 50, 50, 50, imagecolorallocate( $image, 0, 0, 0 ) ); 22 imagefilltoborder( $image, 'wrong param', 50, imagecolorallocate( $image, 0, 0, 0 ), imagecolorallo…
|
H A D | imagefilltoborder_error3.phpt | 12 // Create a image 13 $image = imagecreatetruecolor( 100, 100 ); 16 imagefilledrectangle( $image, 0, 0, 100, 100, imagecolorallocate( $image, 255, 255, 255 ) ); 19 imageellipse( $image, 50, 50, 50, 50, imagecolorallocate( $image, 0, 0, 0 ) ); 22 imagefilltoborder( $image, 50, 'wrong param', imagecolorallocate( $image, 0, 0, 0 ), imagecolorallo…
|
H A D | imagegammacorrect_variation1.phpt | 2 Testing imagegammacorrect() of GD library with non TrueColor image 12 $image = imagecreate(150, 150); 14 $grey = imagecolorallocate($image,6,6,6); 15 $gray = imagecolorallocate($image,15,15,15); 17 $half = imagefilledarc ( $image, 75, 75, 70, 70, 0, 180, $grey, IMG_ARC_PIE ); 18 $half2 = imagefilledarc ( $image, 75, 75, 70, 70, 0, -180, $gray, IMG_ARC_PIE ); 20 $gamma = imagegammacorrect($image, 1, 5); 24 imagepng($image, null, 9);
|
H A D | imagefilltoborder_error1.phpt | 12 // Create a image 13 $image = imagecreatetruecolor( 100, 100 ); 16 imagefilledrectangle( $image, 0, 0, 100, 100, imagecolorallocate( $image, 255, 255, 255 ) ); 19 imageellipse( $image, 50, 50, 50, 50, imagecolorallocate( $image, 0, 0, 0 ) ); 22 …toborder( 'wrong param', 50, 50, imagecolorallocate( $image, 0, 0, 0 ), imagecolorallocate( $image…
|
H A D | imagefilltoborder_error4.phpt | 12 // Create a image 13 $image = imagecreatetruecolor( 100, 100 ); 16 imagefilledrectangle( $image, 0, 0, 100, 100, imagecolorallocate( $image, 255, 255, 255 ) ); 19 imageellipse( $image, 50, 50, 50, 50, imagecolorallocate( $image, 0, 0, 0 ) ); 22 imagefilltoborder( $image, 50, 50, 'wrong param', imagecolorallocate( $image, 255, 0, 0 ) );
|
H A D | imagefilltoborder_error5.phpt | 12 // Create a image 13 $image = imagecreatetruecolor( 100, 100 ); 16 imagefilledrectangle( $image, 0, 0, 100, 100, imagecolorallocate( $image, 255, 255, 255 ) ); 19 imageellipse( $image, 50, 50, 50, 50, imagecolorallocate( $image, 0, 0, 0 ) ); 22 imagefilltoborder( $image, 50, 50, imagecolorallocate( $image, 0, 0, 0 ), 'wrong param' );
|
H A D | imagecreatetruecolor_error2.phpt | 12 $image = imagecreatetruecolor(-1, 30); 13 $image = imagecreatetruecolor(30, -1); 14 $image = imagecreatetruecolor(999999999999999999999999999, 30); 15 $image = imagecreatetruecolor(30, 999999999999999999999999999); 18 Warning: imagecreatetruecolor(): Invalid image dimensions in %s on line %d 20 Warning: imagecreatetruecolor(): Invalid image dimensions in %s on line %d 22 Warning: imagecreatetruecolor(): Invalid image dimensions in %s on line %d 24 Warning: imagecreatetruecolor(): Invalid image dimensions in %s on line %d
|
H A D | imagefilltoborder_error6.phpt | 12 // Create a image 13 $image = imagecreatetruecolor( 100, 100 ); 16 imagefilledrectangle( $image, 0, 0, 100, 100, imagecolorallocate( $image, 255, 255, 255 ) ); 19 imageellipse( $image, 50, 50, 50, 50, imagecolorallocate( $image, 0, 0, 0 ) ); 23 …illtoborder( $image_foo, 50, 50, imagecolorallocate( $image, 0, 0, 0 ), imagecolorallocate( $image…
|
H A D | imagegammacorrect_basic.phpt | 12 $image = imagecreatetruecolor(150, 150); 14 $grey = imagecolorallocate($image,6,6,6); 15 $gray = imagecolorallocate($image,15,15,15); 17 $half = imagefilledarc ( $image, 75, 75, 70, 70, 0, 180, $grey, IMG_ARC_PIE ); 18 $half2 = imagefilledarc ( $image, 75, 75, 70, 70, 0, -180, $gray, IMG_ARC_PIE ); 20 $gamma = imagegammacorrect($image, 1, 5); 24 imagepng($image, null, 9);
|
H A D | imagesetthickness_basic.phpt | 12 // Create a 200x100 image 13 $image = imagecreatetruecolor(200, 100); 14 $white = imagecolorallocate($image, 0xFF, 0xFF, 0xFF); 15 $black = imagecolorallocate($image, 0x00, 0x00, 0x00); 18 imagefilledrectangle($image, 0, 0, 299, 99, $white); 21 imagesetthickness($image, 5); 24 imagerectangle($image, 14, 14, 185, 85, $black); 27 imagepng($image, null, 9);
|
H A D | imagetruecolortopalette_basic.phpt | 12 $image = imagecreatetruecolor(150, 150); 14 $a = imagecolorallocate($image,255,0,255); 15 $b = imagecolorallocate($image,0,255,255); 17 $half = imagefilledarc ( $image, 75, 75, 70, 70, 0, 180, $a, IMG_ARC_PIE ); 18 $half2 = imagefilledarc ( $image, 75, 55, 80, 70, 0, -180, $b, IMG_ARC_PIE ); 20 var_dump(imagetruecolortopalette($image, true, 2)); 23 imagepng($image, null, 9);
|
H A D | imagefilltoborder_error7.phpt | 12 // Create a image 13 $image = imagecreatetruecolor( 100, 100 ); 16 imagefilledrectangle( $image, 0, 0, 100, 100, imagecolorallocate( $image, 255, 255, 255 ) ); 19 imageellipse( $image, 50, 50, 50, 50, imagecolorallocate( $image, 0, 0, 0 ) ); 22 imagefilltoborder( $image, 50, 50 );
|
H A D | bug22544.phpt | 13 $image = imageCreateTruecolor(640, 100); 14 $transparent = imageColorAllocate($image, 0, 0, 0); 15 $red = imageColorAllocate($image, 255, 50, 50); 16 imageColorTransparent($image, $transparent); 17 imageFilledRectangle($image, 0, 0, 640-1, 100-1, $transparent); 18 imagePng($image, $dest);
|
H A D | imagerectangle_basic.phpt | 12 // Create a image 13 $image = imagecreatetruecolor( 100, 100 ); 16 imagerectangle( $image, 0, 0, 50, 50, imagecolorallocate($image, 255, 255, 255) ); 19 imagepng( $image, null, 9 );
|
H A D | imagecolorstotal_basic.phpt | 15 /* Prototype : int imagecolorstotal ( resource $image ) 16 * Description: Find out the number of colors in an image's palette 22 // Get an image 26 echo 'Total colors in image: ' . imagecolorstotal($im); 28 // Free image 35 Total colors in image: 128
|
/PHP-5.5/ext/standard/tests/image/ |
H A D | getimagesize_basic.phpt | 7 * Source code: ext/standard/image.c 52 -- GIF image file (200x100.gif) -- 67 string(9) "image/gif" 87 string(10) "image/jpeg" 94 -- PNG image file (200x100.png) -- 107 string(9) "image/png" 112 -- SWF image file (200x100.swf) -- 141 string(14) "image/x-ms-bmp" 157 string(10) "image/tiff" 197 string(9) "image/jp2" [all …]
|
H A D | image_type_to_mime_type_variation3.phpt | 9 * Source code: ext/standard/image.c 27 string\(9\) "image\/gif" 30 string\(10\) "image\/jpeg" 33 string\(9\) "image\/png" 39 string\(9\) "image\/psd" 42 string\(14\) "image\/x-ms-bmp" 45 string\(10\) "image\/tiff" 48 string\(10\) "image\/tiff" 54 string\(9\) "image\/jp2" 66 string\(9\) "image\/iff" [all …]
|
H A D | image_type_to_mime_type_basic.phpt | 46 string(9) "image/gif" 47 string(10) "image/jpeg" 48 string(9) "image/png" 50 string(9) "image/psd" 51 string(14) "image/x-ms-bmp" 52 string(10) "image/tiff" 53 string(10) "image/tiff" 55 string(9) "image/jp2" 58 string(9) "image/iff" 59 string(18) "image/vnd.wap.wbmp" [all …]
|
H A D | image_type_to_mime_type.phpt | 30 string(14) "image/x-ms-bmp" 32 string(14) "image/x-ms-bmp" 34 string(14) "image/x-ms-bmp" 36 string(9) "image/jp2" 40 string(10) "image/jpeg" 42 string(9) "image/gif" 44 string(9) "image/gif" 46 string(9) "image/iff" 48 string(9) "image/png" 50 string(9) "image/psd" [all …]
|
/PHP-5.5/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"
|