Bu benim php komut dosyası için anında oluşturulan gif resmin sağ görselleştirme ile ilgili sorun var, benim gerçek kodudur. Ben tarayıcı iyi göstermek ama ben img etiketi ile benim şimdiki script çalışırsanız, tarayıcı göstermek olamazdı komut dosyası tarafından oluşturulan gif görüntü doğrudan erişin.
Herhangi bir arkadaş önermek?
<?php
$src = imagecreatefromjpeg( 'img/ejemplo-2.jpg' );
list( $width, $height ) = getimagesize( 'img/ejemplo-2.jpg' );
$tmp = imagecreatetruecolor( '300', '300');
imagecopyresampled( $tmp, $src, 0, 0, 0, 0, '300', '300', $width, $height );
$imagen = imagegif( $tmp, "filename.gif" );
$data = "data:image/gif;base64," . base64_encode( file_get_contents( "filename.gif" ) );
?>
<img src="<?php echo $data; ?>" width="300" height="300" />