我正在寻找一种方法来发送图像链接,例如
并将base64二进制文件转换为字符串。如果它通过freemarker中的功能或通过Web服务来解决它并不重要。我怎么能这样做?
答案 0 :(得分:0)
有解决方案,只需编写一个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);
?>