在我的 Android 应用中,用户通过相机拍照。然后它可以作为位图使用:
Bitmap photo = (Bitmap) data.getExtras().get("data");
我想通过 http post 发送到 Azure Face-detect API。目前,我只能使用给定的图片 URL:
StringEntity reqEntity = new StringEntity("{\"url\":\"https://upload.wikimedia.org/wikipedia/commons/c/c3/RH_Louise_Lillian_Gish.jpg\"}");
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response = httpclient.execute(request)
如何使用位图照片将其发送到 azure?