10 lines
318 B
PHP
Executable File
10 lines
318 B
PHP
Executable File
<?php
|
|
$im = imagecreatefromgif("../img/r1.gif");
|
|
$img = imagecreatetruecolor(10,21);
|
|
$trans = imagecolorallocate($img,255,255,255);
|
|
imagecolortransparent($img,$trans);
|
|
imagecopy($img,$im,0,0,0,0,10,21);
|
|
imagetruecolortopalette($img,true,256);
|
|
imageinterlace($img);
|
|
imagegif($img,"../img/r1.gif");
|
|
?>
|