在unirest中发送BufferedImage而不是File

时间:2018-11-10 16:45:49

标签: java unirest mashape

我正在使用下面的代码将图像文件发送到mashape api,但是他们的示例要求我将路径传递到实际文件。

HttpResponse<JsonNode> response = Unirest.post("https://apicloud-facerect.p.mashape.com/process-file.json")
.header("X-Mashape-Key", "MYKEY")
.header("X-Mashape-Host", "apicloud-facerect.p.mashape.com")
.field("image", new File("[object Object]"))
.field("features", )
.asJson();

代替File。可以使用BufferedImage吗?

0 个答案:

没有答案