用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - php代码库

PHP将image转换为base64字符串

2014-12-12 作者: php源代码大全举报

[php]代码库

<title>Image to Base64 String</title>
<fieldset>
    <legend>Image to Base64 String</legend>
        <center>
        <form name="select_all">
                <?php
                /**
 * @author vir0e5 a.k.a banditc0de
 * @copyright 2010 by vir0e5
 * @authorurl http://facebook.com/vir0e5.vbs
 * @Blog http://banditc0de.blogspot.com
  This code will help you to learn how we can convert an image into a base64 string!!
 */
                    echo"<h3><p>Image</p></h3>";
                    //$file = File Image yang ingin di encode 
                    //Filetype: JPEG,PNG,GIF
                    $file = "encode.jpg";
                    if($fp = fopen($file,"rb", 0))
                    {
                    $gambar = fread($fp,filesize($file));
                    fclose($fp);

                    $base64 = chunk_split(base64_encode($gambar));
                    //Result
                    $encode = '<img src="data:image/jpg/png/gif;base64,' . $base64 .'" >';
                    echo $encode;
                    }    
                ?>
                <br><textarea  name="text_area" rows="20" cols="70"><? echo $encode; ?></textarea>
                <p><input type="button" value="Select All Code" onClick="javascript:this.form.text_area.focus();this.form.text_area.select();"></p>
        </form>
        </center>
    </fieldset>


网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...