如何使用freemarker将{jpg图像转换为base64

时间:2016-11-21 10:28:42

标签: image web-services binary base64 freemarker

我正在寻找一种方法来发送图像链接,例如

imageLink

并将base64二进制文件转换为字符串。如果它通过freemarker中的功能或通过Web服务来解决它并不重要。我怎么能这样做?

1 个答案:

答案 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);
?>