| Author |
can we serialize images
|
gagan narula
Greenhorn
Joined: Nov 05, 2006
Posts: 18
|
|
|
can we serialize images if yes thn how
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12911
|
|
|
You can use class javax.imageio.ImageIO to load and save images in different image file formats.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
Rahul Bhattacharjee
Ranch Hand
Joined: Nov 29, 2005
Posts: 2300
|
|
|
Serialization is required so that the objects can be written to streams of bytes.Image by itself are binary so no need to serialize.If just sending to any outputstream is the concern then you can use that as it is.But if you want to strialize as object then you may read to bytes of image to object and serialize that.
|
Rahul Bhattacharjee
LinkedIn - Blog
|
 |
 |
|
|
subject: can we serialize images
|
|
|