画像を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エンコード形式でイメージを表現するためにもこの方法を使用してください... find PHP function file_get_content
そして次にnext base64_encode
を使用する
そして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.'">';
万が一curl
もfile_get_contents
も使えない場合は、次の方法で回避できます。
$img = imagecreatefrompng('...');
ob_start();
imagepng($img);
$bin = ob_get_clean();
$b64 = base64_encode($bin);
<img src="data:image/png;base64,<?php echo base64_encode(file_get_contents("IMAGE URL HERE")) ?>">
私はこのリソースを使おうとしていましたが、エラーを出し続けました、私は上のコードが完全に働いたのがわかりました。
こちらの画像のURLをあなたの画像のURLに置き換えてください - http://www.website.com/image.jpg
非常に単純で一般的に使用されるものです。
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('./images/my-file.svg').'" alt="">';
echo '<img src="'.getDataURI('./images/my-file.png').'" alt="">';
注:ファイルのMime-Typeは自動的に追加されます(これを利用して PHPドキュメント )。
これは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);?>">
これは、エンコードして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でもこれを行うことができます。画像ファイルへのパスが必要で、それを以下の関数に渡します。
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;
}