IopClient client =newIopClient(url, appkey, appSecret);IopRequest request =newIopRequest();request.setApiName("/ai/image/cropping");request.addApiParameter("imageUrl","https://ae01.alicdn.com/kf/Sa78257f1d9a34dad8ee494178db12ec8l.jpg");request.addApiParameter("targetWidth","1000");request.addApiParameter("imageBase64","The ImageUrl and Base64 cannot be both empty. If both are provided, the Base64 image will be prioritized. ");request.addApiParameter("targetHeight","1000");IopResponse response =client.execute(request);System.out.println(response.getBody());Thread.sleep(10);