[android-developers] Re: PNG issue with 1.0 Release 1

2008-10-06 Thread Sudha
Hi I faced similar problem today also.. the error was skia :xxx the error was coming from the Bitmap Factory().decodeStream(),decodeFile() ,decodeButeArray() I was using 0.9 today I tried the same with the 0.1 Its working fine. I use dthe images taken by the emulator camera.. hope this may h

[android-developers] Re: PNG issue with 1.0 Release 1

2008-10-06 Thread Mike Reed
Sometimes that is spurious, and has been fixed. Can you attach an image that shows this problem? On Oct 3, 2008, at 6:09 PM, tberthel wrote: I get the following error loading some images that loaded in .9 Beta: D/skia( 226): xxx jpeg error 53 Not a JPEG file: starts with 0x%02x

[android-developers] Re: PNG issue with 1.0 Release 1

2008-10-04 Thread Chris Cicc
Hi, I was also getting this error, but was able to resolve it. For me I had two issues: the first was that there was XML header information being passed from the server that I had to read first and then get the binary data out of (I am using a web service). The second was the byte data I was retri

[android-developers] Re: PNG issue with 1.0 Release 1

2008-10-03 Thread Nemat
Hi, I m also getting this error What is the reason behind.My code is: public Bitmap getFromServer(String url) { Bitmap bitmap = null; InputStream in = null; OutputStream out = null; int IO_BUFFER_SIZE=1*1024*1024; ImageView i = new Im

[android-developers] Re: PNG issue with 1.0 Release 1

2008-10-03 Thread Megha Joshi
Could you attach a test image and the code that you are using to load this image? 2008/10/3 tberthel <[EMAIL PROTECTED]> > > I get the following error loading some images that loaded in .9 Beta: > > D/skia( 226): xxx jpeg error 53 Not a JPEG file: starts > with 0x%02x 0x%02x > > Is t