On Mon, May 24, 2010 at 10:48 PM, whtuhtc tu wrote:
> Thanks for the replies.
>
> If I want to know whether the image is rescaled automatically by EFL such as
> when enlarging window which contains image object. How can I do?
you can't know about images being rescaled, as this is the image-fill
p
Thanks for the replies.
If I want to know whether the image is rescaled automatically by EFL such as
when enlarging window which contains image object. How can I do?
any suggestions?
2010/5/24 Atton Jonathan
> sorry, this is evas_object_image_filled_set
>
> 2010/5/24 Atton Jonathan
>
> or :
>
or :
evas_object_image_file_set 1 time and then when you rezise :
evas_object_resize
2010/5/24 Vincent Torri
>
>
> On Mon, 24 May 2010, whtuhtc tu wrote:
>
> > Hi,
> >
> > If I want to check if the image file is rescaled by EFL, where can I log
> or
> > print a message to reminder me?
>
> To re
sorry, this is evas_object_image_filled_set
2010/5/24 Atton Jonathan
> or :
>
> evas_object_image_file_set 1 time and then when you rezise :
> evas_object_resize
>
> 2010/5/24 Vincent Torri
>
>
>>
>> On Mon, 24 May 2010, whtuhtc tu wrote:
>>
>> > Hi,
>> >
>> > If I want to check if the image fi
On Mon, 24 May 2010, whtuhtc tu wrote:
> Hi,
>
> If I want to check if the image file is rescaled by EFL, where can I log or
> print a message to reminder me?
To resize the image itself:
evas_object_image_size_set(o, width, height);
evas_object_image_fill_set(o, 0, 0, width, height);
To resiz
Hi,
If I want to check if the image file is rescaled by EFL, where can I log or
print a message to reminder me?
Are there only evas_object_resize and evas_object_image_fill_set used to
rescaled image file?
Thanks in advance.
whtuhtc
--