| 1 | package be.nikiroo.utils; |
| 2 | |
| 3 | import java.io.File; |
| 4 | import java.io.IOException; |
| 5 | import java.io.InputStream; |
| 6 | |
| 7 | import be.nikiroo.utils.serial.SerialUtils; |
| 8 | |
| 9 | /** |
| 10 | * This class offer some utilities based around images. |
| 11 | * |
| 12 | * @author niki |
| 13 | */ |
| 14 | public abstract class ImageUtils { |
| 15 | private static ImageUtils instance = newObject(); |
| 16 | |
| 17 | /** |
| 18 | * Get a (unique) instance of an {@link ImageUtils} compatible with your |
| 19 | * system. |
| 20 | * |
| 21 | * @return an {@link ImageUtils} |
| 22 | */ |
| 23 | public static ImageUtils getInstance() { |
| 24 | return instance; |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Save the given resource as an image on disk using the given image format |
| 29 | * for content, or with "png" format if it fails. |
| 30 | * |
| 31 | * @param img |
| 32 | * the resource |
| 33 | * @param target |
| 34 | * the target file |
| 35 | * @param format |
| 36 | * the file format ("png", "jpeg", "bmp"...) |
| 37 | * |
| 38 | * @throws IOException |
| 39 | * in case of I/O error |
| 40 | */ |
| 41 | public abstract void saveAsImage(Image img, File target, String format) |
| 42 | throws IOException; |
| 43 | |
| 44 | /** |
| 45 | * Return the EXIF transformation flag of this image if any. |
| 46 | * |
| 47 | * <p> |
| 48 | * Note: this code has been found on internet; thank you anonymous coder. |
| 49 | * </p> |
| 50 | * |
| 51 | * @param in |
| 52 | * the data {@link InputStream} |
| 53 | * |
| 54 | * @return the transformation flag if any |
| 55 | * |
| 56 | * @throws IOException |
| 57 | * in case of IO error |
| 58 | */ |
| 59 | protected static int getExifTransorm(InputStream in) throws IOException { |
| 60 | int[] exif_data = new int[100]; |
| 61 | int set_flag = 0; |
| 62 | int is_motorola = 0; |
| 63 | |
| 64 | /* Read File head, check for JPEG SOI + Exif APP1 */ |
| 65 | for (int i = 0; i < 4; i++) |
| 66 | exif_data[i] = in.read(); |
| 67 | |
| 68 | if (exif_data[0] != 0xFF || exif_data[1] != 0xD8 |
| 69 | || exif_data[2] != 0xFF || exif_data[3] != 0xE1) |
| 70 | return -2; |
| 71 | |
| 72 | /* Get the marker parameter length count */ |
| 73 | int length = (in.read() << 8 | in.read()); |
| 74 | |
| 75 | /* Length includes itself, so must be at least 2 */ |
| 76 | /* Following Exif data length must be at least 6 */ |
| 77 | if (length < 8) |
| 78 | return -1; |
| 79 | length -= 8; |
| 80 | /* Read Exif head, check for "Exif" */ |
| 81 | for (int i = 0; i < 6; i++) |
| 82 | exif_data[i] = in.read(); |
| 83 | |
| 84 | if (exif_data[0] != 0x45 || exif_data[1] != 0x78 |
| 85 | || exif_data[2] != 0x69 || exif_data[3] != 0x66 |
| 86 | || exif_data[4] != 0 || exif_data[5] != 0) |
| 87 | return -1; |
| 88 | |
| 89 | /* Read Exif body */ |
| 90 | length = length > exif_data.length ? exif_data.length : length; |
| 91 | for (int i = 0; i < length; i++) |
| 92 | exif_data[i] = in.read(); |
| 93 | |
| 94 | if (length < 12) |
| 95 | return -1; /* Length of an IFD entry */ |
| 96 | |
| 97 | /* Discover byte order */ |
| 98 | if (exif_data[0] == 0x49 && exif_data[1] == 0x49) |
| 99 | is_motorola = 0; |
| 100 | else if (exif_data[0] == 0x4D && exif_data[1] == 0x4D) |
| 101 | is_motorola = 1; |
| 102 | else |
| 103 | return -1; |
| 104 | |
| 105 | /* Check Tag Mark */ |
| 106 | if (is_motorola == 1) { |
| 107 | if (exif_data[2] != 0) |
| 108 | return -1; |
| 109 | if (exif_data[3] != 0x2A) |
| 110 | return -1; |
| 111 | } else { |
| 112 | if (exif_data[3] != 0) |
| 113 | return -1; |
| 114 | if (exif_data[2] != 0x2A) |
| 115 | return -1; |
| 116 | } |
| 117 | |
| 118 | /* Get first IFD offset (offset to IFD0) */ |
| 119 | int offset; |
| 120 | if (is_motorola == 1) { |
| 121 | if (exif_data[4] != 0) |
| 122 | return -1; |
| 123 | if (exif_data[5] != 0) |
| 124 | return -1; |
| 125 | offset = exif_data[6]; |
| 126 | offset <<= 8; |
| 127 | offset += exif_data[7]; |
| 128 | } else { |
| 129 | if (exif_data[7] != 0) |
| 130 | return -1; |
| 131 | if (exif_data[6] != 0) |
| 132 | return -1; |
| 133 | offset = exif_data[5]; |
| 134 | offset <<= 8; |
| 135 | offset += exif_data[4]; |
| 136 | } |
| 137 | if (offset > length - 2) |
| 138 | return -1; /* check end of data segment */ |
| 139 | |
| 140 | /* Get the number of directory entries contained in this IFD */ |
| 141 | int number_of_tags; |
| 142 | if (is_motorola == 1) { |
| 143 | number_of_tags = exif_data[offset]; |
| 144 | number_of_tags <<= 8; |
| 145 | number_of_tags += exif_data[offset + 1]; |
| 146 | } else { |
| 147 | number_of_tags = exif_data[offset + 1]; |
| 148 | number_of_tags <<= 8; |
| 149 | number_of_tags += exif_data[offset]; |
| 150 | } |
| 151 | if (number_of_tags == 0) |
| 152 | return -1; |
| 153 | offset += 2; |
| 154 | |
| 155 | /* Search for Orientation Tag in IFD0 */ |
| 156 | for (;;) { |
| 157 | if (offset > length - 12) |
| 158 | return -1; /* check end of data segment */ |
| 159 | /* Get Tag number */ |
| 160 | int tagnum; |
| 161 | if (is_motorola == 1) { |
| 162 | tagnum = exif_data[offset]; |
| 163 | tagnum <<= 8; |
| 164 | tagnum += exif_data[offset + 1]; |
| 165 | } else { |
| 166 | tagnum = exif_data[offset + 1]; |
| 167 | tagnum <<= 8; |
| 168 | tagnum += exif_data[offset]; |
| 169 | } |
| 170 | if (tagnum == 0x0112) |
| 171 | break; /* found Orientation Tag */ |
| 172 | if (--number_of_tags == 0) |
| 173 | return -1; |
| 174 | offset += 12; |
| 175 | } |
| 176 | |
| 177 | /* Get the Orientation value */ |
| 178 | if (is_motorola == 1) { |
| 179 | if (exif_data[offset + 8] != 0) |
| 180 | return -1; |
| 181 | set_flag = exif_data[offset + 9]; |
| 182 | } else { |
| 183 | if (exif_data[offset + 9] != 0) |
| 184 | return -1; |
| 185 | set_flag = exif_data[offset + 8]; |
| 186 | } |
| 187 | if (set_flag > 8) |
| 188 | return -1; |
| 189 | |
| 190 | return set_flag; |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * Create a new {@link ImageUtils}. |
| 195 | * |
| 196 | * @return the {@link ImageUtils} |
| 197 | */ |
| 198 | private static ImageUtils newObject() { |
| 199 | for (String clazz : new String[] { "be.nikiroo.utils.ui.ImageUtilsAwt", |
| 200 | "be.nikiroo.utils.android.ImageUtilsAndroid" }) { |
| 201 | try { |
| 202 | return (ImageUtils) SerialUtils.createObject(clazz); |
| 203 | } catch (Exception e) { |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | return null; |
| 208 | } |
| 209 | } |