PHP
» PHP 5 » PHP
, GD. gd_info() - 13.1.
13.1. GD.
‹html›
‹head›
‹title› GD ‹/title›
‹/head›
‹body›
‹pre›
‹?php
print_r(gd_info());
?›
‹/pre›
‹/body›
‹/html›
gd_info() , , ..
, . ( 13.2).
13.2. .
‹?php
// PNG
header("Content-type: image/png");
//
$image = imagecreatetruecolor (100, 100);
//
imagepng($image);
//
imagedestroy($image);
?›
header() , PNG. imagecreateTRUEcolor() , , ( resource). , : , imagepng(), . . , imagedestroy() , .
( 13.3).
13.3. .
‹php
header("Content-type: image/png");
//
$image = imagecreatefrompng("black_square.png");
//
imagepng($image);
//
imagedestroy($image);
?›
black_square.png, . imagecreatefrompng() . .
, HTML- ‹img›. black_square.php - . 13.4.
13.4. .
‹?php
header("Content-type: image/png");
$image = imagecreatetruecolor (100, 100);
?›
HTML- :
‹img src=" black_square.php "›
.