php 数据URI将图像嵌入页面

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 数据URI将图像嵌入页面相关的知识,希望对你有一定的参考价值。

function data_uri($file, $mime) 
{  
  $contents = file_get_contents($file);
  $base64   = base64_encode($contents); 
  return ('data:' . $mime . ';base64,' . $base64);
}
?>

<img src="<?php echo data_uri('elephant.png','image/png'); ?>" alt="An elephant" />

以上是关于php 数据URI将图像嵌入页面的主要内容,如果未能解决你的问题,请参考以下文章

jQuery / PHP - 从外部页面嵌入图像

将图像/视频流嵌入网页

超级有用的9个PHP代码片段

php 使用PHP创建数据URI(编码图像)

将图像数据URI(base64)设置为画布背景

如何在单个 HTML / PHP 文件中嵌入图像?