如何将图像转换为base64编码?
你可以请指导我如何将图像从URL转换为base64编码?
我认为这应该是:
$path = 'myfolder/myimage.png'; $type = pathinfo($path, PATHINFO_EXTENSION); $data = file_get_contents($path); $base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);
简单:
$imagedata = file_get_contents("/path/to/image.jpg"); // alternatively specify an URL, if PHP settings allow $base64 = base64_encode($imagedata);
请记住,这会使数据增加33%,并且对于超出memory_limit
大小的文件,您将遇到问题。
用这种方式也可以用base64编码格式来表示图片…findPHP函数file_get_content
,然后使用函数base64_encode
并得到结果作为data:" . file_mime_type . " base64_encoded string
准备str data:" . file_mime_type . " base64_encoded string
。 在img src属性中使用它。 看到下面的代码,我可以帮你。
// A few settings $img_file = 'raju.jpg'; // Read image path, convert to base64 encoding $imgData = base64_encode(file_get_contents($img_file)); // Format the image SRC: data:{mime};base64,{data}; $src = 'data: '.mime_content_type($img_file).';base64,'.$imgData; // Echo out a sample image echo '<img src="'.$src.'">';
<img src="data:image/png;base64,<?php echo base64_encode(file_get_contents("IMAGE URL HERE")) ?>">
我试图使用这个资源,但不断收到错误,我发现上面的代码工作完美。
刚刚用图片的URL代替了IMAGE URL这里 – http://www.website.com/image.jpg
以防万一你(无论什么原因)无法使用curl
或file_get_contents
,你可以解决:
$img = imagecreatefrompng('...'); ob_start(); imagepng($img); $bin = ob_get_clean(); $b64 = base64_encode($bin);
这是一个使用cURL调用的例子。这比file_get_contents()函数更好。 当然,使用base64_encode()
$url = "http://example.com"; $ch = curl_init($url); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $output = curl_exec($ch); curl_close($ch); ?> <img src="data:image/png;base64,<?php echo base64_encode($output);?>">
非常简单,常用:
function getDataURI($imagePath) { $finfo = new finfo(FILEINFO_MIME_TYPE); $type = $finfo->file($imagePath); return 'data:'.$type.';base64,'.base64_encode(file_get_contents($imagePath)); } //Use the above function like below: echo '<img src="'.getDataURI('.http://img.dovov.commy-file.svg').'" alt="">'; echo '<img src="'.getDataURI('.http://img.dovov.commy-file.png').'" alt="">';
注意:文件的Mimetypes将被自动添加(从这个PHP文档获得帮助)。
这里是上传代码进行编码并保存到MySQL
if (!isset($_GET["getfile"])) { if ($_FILES["file"]["error"] > 0) { echo "Error: " . $_FILES["file"]["error"] . "<br>"; } else { move_uploaded_file($_FILES["file"]["tmp_name"], $_FILES["file"]["name"]); $bin_string = file_get_contents($_FILES["file"]["name"]); $hex_string = base64_encode($bin_string); $mysqli = mysqli_init(); if (!$mysqli->real_connect('localhost', 'root', '', 'arihant')) { die('Connect Error (' . mysqli_connect_errno() . ') ' . mysqli_connect_error()); } $mysqli->query("INSERT INTO upload(image) VALUES ('" . $hex_string . "')"); } }
为了显示图像使用这个
echo "<img src='data:image/jpeg;base64, $image' width=300>";
你也可以通过curl来做到这一点,只需要一个图像文件的path,并将其传递给下面给出的函数。
public static function getImageDataFromUrl($url) { $urlParts = pathinfo($url); $extension = $urlParts['extension']; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_HEADER, 0); $response = curl_exec($ch); curl_close($ch); $base64 = 'data:image/' . $extension . ';base64,' . base64_encode($response); return $base64; }