import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
-import java.io.DataInputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.util.Date;
import java.util.Scanner;
import java.util.regex.Pattern;
-import java.util.zip.ZipInputStream;
import javax.imageio.ImageIO;
* in case of IO error
*/
static public String fromImage(BufferedImage image) throws IOException {
+ return fromImage(image, null);
+ }
+
+ /**
+ * Convert the given {@link Image} object into a Base64 representation of
+ * the same {@link Image}. object.
+ *
+ * @param image
+ * the {@link Image} object to convert
+ * @param format
+ * the image format to use to serialise it (default is PNG)
+ *
+ * @return the Base64 representation
+ *
+ * @throws IOException
+ * in case of IO error
+ */
+ static public String fromImage(BufferedImage image, String format)
+ throws IOException {
+ if (format == null) {
+ format = "png";
+ }
+
String imageString = null;
ByteArrayOutputStream out = new ByteArrayOutputStream();
- ImageIO.write(image, "jpeg", out);
+ ImageIO.write(image, format, out);
byte[] imageBytes = out.toByteArray();
imageString = new String(Base64.encodeBytes(imageBytes));
package be.nikiroo.utils.serial;
+import java.awt.image.BufferedImage;
+import java.io.IOException;
import java.io.NotSerializableException;
import java.lang.reflect.Array;
import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
-import java.util.ArrayList;
+import java.lang.reflect.Modifier;
import java.util.HashMap;
import java.util.Map;
import java.util.UnknownFormatConversionException;
+import be.nikiroo.utils.StringUtils;
+
/**
* Small class to help with serialisation.
* <p>
static {
customTypes = new HashMap<String, CustomSerializer>();
- // TODO: add "default" custom serialisers if any (Bitmap?)
// Array types:
customTypes.put("[]", new CustomSerializer() {
}
}
});
+
+ // Images (this is currently the only supported image type by default)
+ customTypes.put("java.awt.image.BufferedImage", new CustomSerializer() {
+ @Override
+ protected String toString(Object value) {
+ try {
+ return StringUtils.fromImage((BufferedImage) value);
+ } catch (IOException e) {
+ throw new UnknownFormatConversionException(e.getMessage());
+ }
+ }
+
+ @Override
+ protected String getType() {
+ return "java.awt.image.BufferedImage";
+ }
+
+ @Override
+ protected Object fromString(String content) {
+ try {
+ return StringUtils.toImage(content);
+ } catch (IOException e) {
+ throw new UnknownFormatConversionException(e.getMessage());
+ }
+ }
+ });
}
/**
for (Field field : fields) {
field.setAccessible(true);
- if (field.getName().startsWith("this$")) {
+ if (field.getName().startsWith("this$")
+ || field.isSynthetic()
+ || (field.getModifiers() & Modifier.STATIC) == Modifier.STATIC) {
// Do not keep this links of nested classes
+ // Do not keep synthetic fields
+ // Do not keep final fields
continue;
}
builder.append(value).append('F');
} else if (value instanceof Double) {
builder.append(value).append('d');
+ } else if (value instanceof Enum) {
+ String type = value.getClass().getCanonicalName();
+ builder.append(type).append(".").append(((Enum<?>) value).name())
+ .append(";");
} else {
return false;
}
return Float.parseFloat(cut);
} else if (encodedValue.endsWith("d")) {
return Double.parseDouble(cut);
+ } else if (encodedValue.endsWith(";")) {
+ return decodeEnum(encodedValue);
} else {
return Integer.parseInt(encodedValue);
}
return clazz;
}
+ @SuppressWarnings({ "unchecked", "rawtypes" })
+ private static Enum<?> decodeEnum(String escaped) {
+ // escaped: be.xxx.EnumType.VALUE;
+ int pos = escaped.lastIndexOf(".");
+ String type = escaped.substring(0, pos);
+ String name = escaped.substring(pos + 1, escaped.length() - 1);
+
+ try {
+ return Enum.valueOf((Class<Enum>) getClass(type), name);
+ } catch (Exception e) {
+ e.printStackTrace();
+ throw new UnknownFormatConversionException("Unknown enum: <" + type
+ + "> " + name);
+ }
+ }
+
// aa bb -> "aa\tbb"
private static void encodeString(StringBuilder builder, String raw) {
builder.append('\"');