0
有誰知道如何製作將在Intenet資源管理器中工作的.ico文件? 我似乎無法取得任何 這裏是我的GD代碼使用gd和php製作.ico文件
$im = imagecreatefromjpeg(FAVICONDIR.'normal/'.$filename);
list($width, $height) = getimagesize(FAVICONDIR.'normal/'.$filename); // get the width and height of the jpg
$image_p = imagecreatetruecolor("16", "16"); // create a 16x16 canvas to play with
imagecopyresampled($image_p, $im, 0, 0, 0, 0, "16", "16", $width, $height); // resize jpg to 16x16
imagepng($image_p,FAVICONDIR.'icons/'.$ico_filename); // make a .png file (icon file) from our data
imagedestroy ($im); // close gd library
,並用難懂的
/*$cmd = IMAGEMAGIKDIR .''. FAVICONDIR.'normal/'.$filename . ' -transparent white -background white -flatten -resize 16x16 ico:'.FAVICONDIR.'icons/'.$ico_filename;
exec($cmd);*/
的attenpt任何想法將是巨大的。