我需要一个建议。我在java中开发了face Recognistion webservice(SOAP),但前端是php应用程序。用户将通过使用网络摄像头捕获或上传图像来发送图像。但我希望这个图像及其作为文件对象的xml而不是来自服务器或数据库的路径。请建议我如何处理这个或任何其他方法。
答案 0 :(得分:1)
看看其中一个:
$requestImageXML = '<img src="data:image/jpeg;base64,' . base64_encode(readfile($filePath)) . '"/>'; $requestImageString = base64_encode(readfile($filePath));并以相关的方式使用字符串。