-4
A
回答
0
獲取imagesService的一個實例,我們可以用它來改變圖片:
ImagesService imagesService = ImagesServiceFactory.getImagesService();
直接從字節數組製作的圖像,並將其轉換:
Image image = ImagesServiceFactory.makeImage(imageBytes);
Transform resize = ImagesServiceFactory.makeResize(100, 50);
Image resizedImage = imagesService.applyTransform(resize, image);
寫變換圖像回雲存儲對象:
gcsService.createOrReplace(
new GcsFilename(bucket, "resizedImage.jpeg"),
new GcsFileOptions.Builder().mimeType("image/jpeg").build(),
ByteBuffer.wrap(resizedImage.getImageData()));
相關問題
- 1. 從圖像src獲取base64字符串
- 2. 從base64中獲取圖像字符串
- 3. 從hexa字符串獲取圖像
- 4. iOS:從HTML字符串獲取圖像
- 5. 獲取圖像標籤從字符串
- 6. PHP:從base64字符串獲取圖像類型字符串
- 7. 從字符串獲取子字符串__
- 8. SWT圖像/從字符串
- 9. 試圖從ListView中獲取字符串
- 10. 從字符串獲取圖片網址
- 11. 從Json獲取字符串?
- 12. 從spinner獲取字符串
- 13. 獲取從JSON字符串
- 14. 從Json獲取字符串
- 15. 獲取Abbrevation從字符串
- 16. 從ArrayList獲取字符串
- 17. 從字符串獲取URL
- 18. 從CharField獲取字符串
- 19. 從字符串獲取KeyEvent
- 20. 從字符串獲取LCID
- 21. 從SQLCLR獲取字符串
- 22. 從字符串獲取keyCode?
- 23. 從DropDownList獲取字符串
- 24. 獲取從字符串
- 25. PHP從字符串獲取
- 26. 從CodeBehind獲取字符串
- 27. 從字符串獲取PHP
- 28. 從字符串獲取DateTime
- 29. 從字符串獲取NSDate
- 30. 從字符串獲取ID
您可以使用google自定義搜索API https://developers.google.com/cus tom-search/json-api/v1/overview#先決條件 – explv