Heim >Backend-Entwicklung >PHP-Tutorial >将图片转成base64字符串的PHP代码

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

WBOY
WBOYOriginal
2016-07-25 08:45:411257Durchsuche
此代码将帮助你学习如何将图像转换成一个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


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn