avril
Новичок
Есть png нужно wbmp
Есть код
header("Content-type: image/png");
$orig = imageCreateFromPNG($file_path);
$sx = imagesx($orig);
$sy = imagesy($orig);
$orig2 = imagecreatetruecolor($sx, $sy);
imagecopy($orig2, $orig, 0, 0, 0, 0, $sx, $sy);
$mod = imagecreatetruecolor(45, 45);
imagecopyresampled($mod, $orig2, 0, 0, 0, 0, 45, 45, $sx, $sy);
Раньше было
Header("Content-type: image/gif");
ImageGif($mod, null, -1);
imageDestroy($mod);
Gif прекрасно выводился
Теперь
Header("Content-type: image/wbmp");
ImageWBMP($mod, null, -1);
imageDestroy($mod);
И wbmp не выводится
Почему здесь то же самое не катит?
Чтоли нет такого контента?
-~{}~ 03.08.05 13:49:
header ("Content-type: image/vnd.wap.wbmp")
тоже не работает
-~{}~ 03.08.05 13:51:
Точнее работает и даже выводит картинку. Можно посмотреть свойства, но она невидима
Есть код
header("Content-type: image/png");
$orig = imageCreateFromPNG($file_path);
$sx = imagesx($orig);
$sy = imagesy($orig);
$orig2 = imagecreatetruecolor($sx, $sy);
imagecopy($orig2, $orig, 0, 0, 0, 0, $sx, $sy);
$mod = imagecreatetruecolor(45, 45);
imagecopyresampled($mod, $orig2, 0, 0, 0, 0, 45, 45, $sx, $sy);
Раньше было
Header("Content-type: image/gif");
ImageGif($mod, null, -1);
imageDestroy($mod);
Gif прекрасно выводился
Теперь
Header("Content-type: image/wbmp");
ImageWBMP($mod, null, -1);
imageDestroy($mod);
И wbmp не выводится
Почему здесь то же самое не катит?
Чтоли нет такого контента?
-~{}~ 03.08.05 13:49:
header ("Content-type: image/vnd.wap.wbmp")
тоже не работает
-~{}~ 03.08.05 13:51:
Точнее работает и даже выводит картинку. Можно посмотреть свойства, но она невидима