iNaNimAtE -
Joined: 05 Nov 2003 Posts: 2381 Location: Everywhere you're not.
|
Posted: Mon Jul 19, 2004 2:18 am Post subject: |
|
|
Esta aqui:
<?
//Enter your image location below in place of 'picture.gif or jpg'.
//Example $file = 'mypicture.gif';
// Copy and paste the output to a php file.
$file = 'picture.gif or jpg';
$pic = fopen ($file, "r");
$size=filesize ($file);
$type=substr("$file",strrpos($file,".")+1);
$cont = fread ($pic, $size);
fclose ($pic);
$code=base64_encode($cont);
$piccode=chunk_split("'$code",50,"'.<br>'");
echo "header(\"Content-type: image/$type\");<br>
header(\"Content-length: $size\");<br>
echo base64_decode(<br>$piccode');";
?> _________________ Bienvenidos! |
|