PHP ver gevorderde |
|
<?php
header( 'content-type: image/png' );
$img = imagecreatefrompng( 'image.png' );
$blank = imagecolorallocate( $img , 255 , 255 , 255 );
imagefill($img, 0, 0, $blank);
imagepng( $img );
imagedestroy( $img );
?>
<?php header( 'content-type: image/png' ); $img = imagecreatefrompng( 'image.png' ); $blank = imagecolorallocate( $img , 255 , 255 , 255 ); imagefill($img, 0, 0, $blank); imagepng( $img ); imagedestroy( $img ); ?>
probeer dat eens
ik heb jou probleem ook een gehad maar dan met imagecreatetruecolor() en heb dat volgens mij toen ook zo opgelost. |