Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. evas_object_image_size_get(image, &favicon_w, &favicon_h);
  2. favicon_alpha = evas_object_image_alpha_get(image);
  3. favicon_data = evas_object_image_data_get(image, EINA_FALSE);
  4.  
  5. Evas_Object *new_image = evas_object_image_add(evas);
  6. evas_object_image_data_set(new_image, favicon_data);
  7. evas_object_image_alpha_set(new_image, favicon_alpha);
  8. evas_object_image_size_set(new_image, favicon_w, favicon_h);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement