Javascript Hex String to Image

后端 未结 2 1460
轮回少年
轮回少年 2020-12-16 08:24

I\'ll cut right to the chase. Right now I am developing a web based application. It has a PHP REST based architecture that serves up XML documents. On many of these document

2条回答
  •  旧时难觅i
    2020-12-16 08:57

    Is it possible to use a php file just for rendering the image? That php file could write some base64 encoded values via

    echo base64_decode($_GET['data']); 
    

    while you embed images like

    
                                                            
提交回复
热议问题