Method
save
(InputStream image, OutputStream response, String format, int width, int height, float quality)
Source from the content-addressed store, hash-verified
| 74 | /// - `quality`: @param quality the quality for the resulting image output (applicable mostly for JPEG), a value between 0 and 1 notice that |
| 75 | /// this isn't implemented in all platforms. |
| 76 | public abstract void save(InputStream image, OutputStream response, String format, int width, int height, float quality) throws IOException; |
| 77 | |
| 78 | /// Saves an image object to the given format |
| 79 | /// |