Welcome to Dream.In.Code
Become a Java Expert!

Join 150,105 Java Programmers for FREE! Get instant access to thousands of Java experts, tutorials, code snippets, and more! There are 1,919 people online right now. Registration is fast and FREE... Join Now!




save image on disk(problem in size)

 
Reply to this topicStart new topic

save image on disk(problem in size)

RautRupali
26 Jun, 2008 - 08:46 PM
Post #1

New D.I.C Head
*

Joined: 7 Jun, 2007
Posts: 44


My Contributions
Hi,

I am using following code to save an pixel array as an jpg image on disk

<code>
public static BufferedImage toImage(byte[] pixels, int w, int h) {
DataBuffer db = new DataBufferByte(pixels, w*h);
WritableRaster raster = Raster.createInterleavedRaster(db,
w, h, w, 1, new int[]{0}, null);
ColorSpace cs = ColorSpace.getInstance(ColorSpace.CS_GRAY);
ColorModel cm = new ComponentColorModel(cs, false, false,
Transparency.OPAQUE ,DataBuffer.TYPE_BYTE);
return new BufferedImage(cm, raster, false, null);
}


public static void saveImage(String filename,byte OriginalByte[], int width1,int height1)
{
BufferedImage image1 = toImage(OriginalByte, width1, height1);
try{
ImageIO.write(image1, "jpg", new File(filename));
}
catch(IOException e){}
}
</code>

I saved pixel array of 1024(32*32) bytes on disk as image.jpg and pixel array of 800(40*20) bytes as image1.jpg on disk using above code.

But the size of image1.jpg on disk is greater then image.jpg.

why this is happening?

Please help,

Thanks,

Rupali
User is offlineProfile CardPM
+Quote Post

pbl
RE: Save Image On Disk(problem In Size)
26 Jun, 2008 - 08:58 PM
Post #2

D.I.C Lover
Group Icon

Joined: 6 Mar, 2008
Posts: 3,587



Thanked: 233 times
Dream Kudos: 75
My Contributions
You did not post all your code: we cannot cut & paste it to reproduce your problem

You also seem to have problem with the [ code] [ /code] tags... it is [ ] not < >

Please publish everything following this rule:
code.gif

User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 1/9/09 12:57AM

Be Social

Dream.In.Code RSS Feed Dream.In.Code LinkedIn Group Follow Us On Twitter

Live Java Help!

Java Tutorials

Reference Sheets

Java Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month