如何使用 freemarker 将 jpg 图像转换为 base64
How to convert a jpg image to base64 with freemarker
我正在寻找一种方法来将 link 发送到诸如
之类的图像
并将 base64 二进制文件转换为字符串。它是通过 freemarker 中的函数还是通过 Web 服务并不重要。我该怎么做?
有解决办法,刚写了一个php脚本:
<?php
header('Content-type: application/json; charset=utf-8');
$link = $_GET['link'];
$imagedata = file_get_contents($link);
// alternatively specify an URL, if PHP settings allow
$base64 = base64_encode($imagedata);
print($base64);
?>
我正在寻找一种方法来将 link 发送到诸如
之类的图像并将 base64 二进制文件转换为字符串。它是通过 freemarker 中的函数还是通过 Web 服务并不重要。我该怎么做?
有解决办法,刚写了一个php脚本:
<?php
header('Content-type: application/json; charset=utf-8');
$link = $_GET['link'];
$imagedata = file_get_contents($link);
// alternatively specify an URL, if PHP settings allow
$base64 = base64_encode($imagedata);
print($base64);
?>