GD: php imagepng resimde boşluk yaratır

0 Cevap php

I php ile görüntüler oluşturur ben GD ile bir sorunum var.

Tuhaf şey, php sürümü 5.3.1 ama php sürümü 5.2.14 üzerinde olan bir sunucu üzerinde çalışır. (Ben php sürümü ya da bu yapıyor GD lib ise emin değilim.)

alt text This file is created with convert and saved in a directory in captcha::get_file().

alt text And this file is generated with imagecreatefrompng() and imagepng()

alt text I made some small changes to the script and made a gif. But there is still a problem with the png

Ne bu neden olur, ve bunu nasıl düzeltebilirim?

İşte phpcode olduğunu:

<?php
session_start();
require_once("./captcha.php"));    

// creates the image with convert and returns the location of the picture
// document_root/picture/picture.png
$picloc = captcha::get_file(); 

$image = @imagecreatefrompng($picloc); 

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

imagepng($image);

imagedestroy($image);

unlink($picloc);
?>

0 Cevap