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.)
This file is created with convert and saved in a directory in captcha::get_file()
.
And this file is generated with imagecreatefrompng()
and imagepng()
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);
?>