欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

将图片转成base64字符串的PHP代码

程序员文章站 2022-05-19 07:56:27
...
此代码将帮助你学习如何将图像转换成一个base64字符串。
  1. Image to Base64 String
  2. Image to Base64 String
  3. /**
  4. * @author vir0e5 a.k.a banditc0de
  5. * @copyright 2010 by vir0e5
  6. * @authorurl http://facebook.com/vir0e5.vbs
  7. * @Blog http://banditc0de.blogspot.com
  8. This code will help you to learn how we can convert an image into a base64 string!!
  9. */
  10. echo"

    Image

    ";
  11. //$file = File Image yang ingin di encode
  12. //Filetype: JPEG,PNG,GIF
  13. $file = "encode.jpg";
  14. if($fp = fopen($file,"rb", 0))
  15. {
  16. $gambar = fread($fp,filesize($file));
  17. fclose($fp);
  18. $base64 = chunk_split(base64_encode($gambar));
  19. //Result
  20. $encode = '将图片转成base64字符串的PHP代码';
  21. echo $encode;
  22. }
  23. ?>

复制代码

转成, PHP