标签: web-services api image-processing base64
是否有任何公共Web服务API允许提交图像URL并返回该图像的Base64编码版本?这是一个例子:http://software.hixie.ch/utilities/cgi/data/data
我想要这个的两个原因:
答案 0 :(得分:3)
没有任何安全方面的考虑,你可以在php中非常简单地做到这一点:
<?php echo base64_encode(file_get_contents($_GET['url']));
不要害怕“服务器端”。
答案 1 :(得分:0)
http://www.greywyvern.com/code/php/binary2base64
http://webcodertools.com/imagetobase64converter