Improve ImageUtilsAndroid and ImageUtils check() system
[fanfix.git] / src / be / nikiroo / utils / android / ImageUtilsAndroid.java
CommitLineData
e8aa5bf9
NR
1package be.nikiroo.utils.android;
2
3import android.graphics.Bitmap;
a2c1d5fe 4import android.graphics.Bitmap.Config;
e8aa5bf9 5import android.graphics.BitmapFactory;
e8aa5bf9
NR
6
7import java.io.File;
8import java.io.FileOutputStream;
9import java.io.IOException;
a2c1d5fe
NR
10import java.io.InputStream;
11import java.util.stream.Stream;
e8aa5bf9 12
10b6023d
NR
13import javax.imageio.ImageIO;
14
e704a414
NR
15import be.nikiroo.utils.Image;
16import be.nikiroo.utils.ImageUtils;
67bcea89 17import be.nikiroo.utils.StringUtils;
e704a414 18
e8aa5bf9 19/**
e704a414
NR
20 * This class offer some utilities based around images and uses the Android
21 * framework.
e8aa5bf9
NR
22 *
23 * @author niki
24 */
25public class ImageUtilsAndroid extends ImageUtils {
10b6023d
NR
26 @Override
27 protected boolean check() {
28 // If we can get the class, it means we have access to it
a2c1d5fe 29 Config.ALPHA_8;
10b6023d
NR
30 return true;
31 }
a2c1d5fe 32
e8aa5bf9
NR
33 @Override
34 public void saveAsImage(Image img, File target, String format)
35 throws IOException {
36 FileOutputStream fos = new FileOutputStream(target);
37 try {
38 Bitmap image = fromImage(img);
39
40 boolean ok = false;
41 try {
42 ok = image.compress(
43 Bitmap.CompressFormat.valueOf(format.toUpperCase()),
44 90, fos);
45 } catch (Exception e) {
46 ok = false;
47 }
48
49 // Some formats are not reliable
50 // Second change: PNG
51 if (!ok && !format.equals("png")) {
52 ok = image.compress(Bitmap.CompressFormat.PNG, 90, fos);
53 }
54
55 if (!ok) {
56 throw new IOException(
57 "Cannot find a writer for this image and format: "
58 + format);
59 }
60 } catch (IOException e) {
61 throw new IOException("Cannot write image to " + target, e);
62 } finally {
63 fos.close();
64 }
65 }
66
67 /**
68 * Convert the given {@link Image} into a {@link Bitmap} object.
69 *
70 * @param img
71 * the {@link Image}
72 * @return the {@link Image} object
73 * @throws IOException
74 * in case of IO error
75 */
76 static public Bitmap fromImage(Image img) throws IOException {
a2c1d5fe
NR
77 InputStream stream = img.newInputStream();
78 try {
79 Bitmap image = BitmapFactory.decodeStream(stream);
80 if (image == null) {
81 String ssize = StringUtils.formatNumber(img.getSize());
82 throw new IOException(
83 "Failed to convert input to image, size was: " + ssize);
84 }
85 } finally {
86 stream.close();
e8aa5bf9 87 }
a2c1d5fe 88
e8aa5bf9
NR
89 return image;
90 }
91}