Languages

Menu
Sites
Language
not support .gif image file

In my application have many .gif file it apper  fine in emulator but  run in Tizen device it not apper on screen.
 

Responses

11 Replies
pius lee

I think maybe image path can be wrong on real device.

If you write absolute path in app, it can be wrong on device at some times.

I suggest you check your image path again.

ashish kumar

this type of problem in only .gif animated file here no any wrong path.

Vikram

.gif is multi-frame image, I've ever encounter similar issue on Tizen Native App with edje. possible tizen not support .gif type image.

Vikram

Hello,

It looks like that Tizen Device support gif image file.

Could you post more details to know what kind of functionality you need with gif ?

AVSukhov

Hello,

I have tested on Z1 device and gif animated image is displayed correctly.

<img src="image/giphy.gif" >

Could you please provide more info or sample code?

Carsten Haitzler

if it's a native app - gif is supported. depending on the widget it may or may not animate it. elm image objects can animate. elm icons can too. you may have to enable the animation. basic evas objects can animate but you have to query time between frames and drive the animatin frame (e.lm image will do this for you). but if nothing displays - then likely path is wrong. so try:

elm_image_animated_play_set(obj, EINA_TRUE);

or

elm_icon_animated_set(ocj, EINA_TRUE);

... if it's an aveas image object.... well you chose to do it the long way :)

ashish kumar

this is a image. it's work fine in emulator but run on tizen device can not display in proper way(blink the image).all the code are correct.

AVSukhov

Hello,

Can you plaes share your gif image? on other hosting

ashish kumar

function three3(){
    document.getElementById('t3').style.visibility = "visible";
}

function countthree() {
    setTimeout(function(){three3();},1000);
    }

 

<img id="t3" src="/images/21.gif" style="visibility:hidden;"/>


display the image using page onload function..

daniel kim

Hi,

I could see gif image properly on Z1 device. which SDK version you use?  

Regards.

Jung hun Lee

hi