Serializing a BufferedImage

If anyone has code to do just that i am willing to give you ten Duke Dollars.
[92 byte] By [glicious] at [2007-9-26 2:39:45]
# 1
Sorry, can't be done. BufferedImage doesn't implement Serializable -> the instances can't be serialized.... but maybe you could try making a subclass that implements that interface and use it ?
jsalonen at 2007-6-29 10:12:46 > top of Java-index,Security,Cryptography...
# 2
Grab the pixels into integer array.writeObject(integerArray);
StSA at 2007-6-29 10:12:46 > top of Java-index,Security,Cryptography...