I am currently using 25 frames gif Image and i am not able to see the whole gif content. part of it is missing. Is there any solution for this? Thanks in advance
Asked
Active
Viewed 156 times
1
-
1How are you displaying the animated gif? There's no built-in support in WP7. Are you using a WebBrowser component, or another library? – Kevin Gosse Mar 28 '12 at 06:56
-
Windows Phone does not support GIF format – TutuGeorge Mar 28 '12 at 08:44
-
1string GIFUrl = "Images/HowItWorksGIF.gif"; ImageTools.IO.Decoders.AddDecoder
(); ImageTools.ExtendedImage image = new ImageTools.ExtendedImage(); image.UriSource = new Uri(GIFUrl, UriKind.Relative); HowItWorksGIFimage.Source = image; – sunil_divum Mar 29 '12 at 06:30 -
1For displaying GIF image I am using the above code – sunil_divum Mar 29 '12 at 06:30
-
Does this question relate to the same issue? http://stackoverflow.com/questions/9671646/why-gif-image-shows-only-some-first-frameswindows-phone – Jon Hearn May 21 '12 at 16:47