Вход Регистрация
Файл: public_html/LoadPNG.php
Строк: 17
<?php
function LoadPNG($imgname)
{

    
$im = @imagecreatefrompng($imgname);

    
/* See if it failed */
    
if(!$im)
    {
        
/* Create a blank image */
        
$im  imagecreatetruecolor(355355);
        
$bgc imagecolorallocate($im255255255);
        
$tc  imagecolorallocate($im000);

        
imagefilledrectangle($im00355355$bgc);

        
/* Output an error message */
        
imagestring($im2455'Error loading ' $imgname$tc);
    }

    return 
$im;
}

header('Content-Type: image/png');

$img LoadPNG("".$_GET['images']."");

imagepng($img);
imagedestroy($img);
?>
Онлайн: 1
Реклама