I assume you are trying to The image decoder library (called Skia) is
failing to parse the image data for those images. There are a number
of things that can cause this problem:

1) The input file is not actually an image (e.g. if it is accessed
from the Web, it might actually be a 404 error page)

2) The image has corrupted during the download. It could be that the
image was always corrupted, or that it did not download properly. See
this link for some hints:
http://stackoverflow.com/questions/1630258/android-problem-bug-with-threadsafeclientconnmanager-downloading-images

3) You are not completely downloading the image - this often happens
if you use an InputStream and don't call close() to flush the
remaining data out of the stream.

4) A bug in Skia, which is not uncommon (though the above 3 are more likely).

Try copying the images that you download to the SD card and opening
them on your development machine. If they aren't corrupted, then check
your source code for unclosed streams or lack of data buffering.

If you still have the problem, post up your source code so we can see
what it is you're actually trying to do.


On Mon, Mar 29, 2010 at 3:09 PM, absn <amitbm...@gmail.com> wrote:
> In my application during downloading of images, for some of the images
> i got the error like
>
> D/skia    (  374): --- decoder->decode returned false
>
> Can anyone solve this problem ??
>
> Thanks in advance
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to android-developers@googlegroups.com
> To unsubscribe from this group, send email to
> android-developers+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>
> To unsubscribe from this group, send email to 
> android-developers+unsubscribegooglegroups.com or reply to this email with 
> the words "REMOVE ME" as the subject.
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe from this group, send email to 
android-developers+unsubscribegooglegroups.com or reply to this email with the 
words "REMOVE ME" as the subject.

Reply via email to