(teil 1)
hiho, sorry ist leider sehr umfangreich, aber auch nich
zu durchzublicken
hab leider das problem, das ich nach dem aufrufen von
thumbnail() zwar ein gif habe, daß aber leider nicht transparent ist
hiho, sorry ist leider sehr umfangreich, aber auch nich
zu durchzublicken
hab leider das problem, das ich nach dem aufrufen von
thumbnail() zwar ein gif habe, daß aber leider nicht transparent ist
PHP-Code:
<?php
if(!function_exists('gif_info'))
{
function gif_info($filename)
{
$fp= fopen($filename,'rb');
$result= fread($fp,13);
$file['signatur']= substr($result,0,3);
$file['version']= substr($result,3,3);
$file['width']= ord(substr($result,6,1))+ord(substr($result,7,1))*256;
$file['height']= ord(substr($result,8,1))+ord(substr($rsult,9,1))*256;
$file['flag']= ord(substr($result,10,1))>>7;
$file['trans_red']= ord(substr($result,ord(substr($result,11))*3,1));
$file['trans_green']= ord(substr($result,ord(substr($result,11))*3+1,1));
$file['trans_blue']= ord(substr($result,ord(substr($result,11))*3+2,1)) ;
fclose($fp);
return $file;
}
}
?>
Kommentar