I have just started working on Tizen. I want to know is there any built in support or library for image manipulating like contrast,color,crop etc to develop native application in Tizen.
Asked
Active
Viewed 251 times
4
-
3There's the [Imageutil class](https://developer.tizen.org/dev-guide/2.2.1/org.tizen.native.apireference/classTizen_1_1Media_1_1ImageUtil.html), but it only contains a few methods right now. You're probably better off providing your own image manipulation routines, or use 3rd party libraries. – Michael Mar 18 '14 at 13:16
-
1@Michael: Thanks :), Is there any libraries available ? – Nikhil Mar 18 '14 at 14:42
1 Answers
0
After Tizen 2.3 you can use Cairo
for modify or manipulate image.
You can find many samples and snippets with google search easily.
It's easy to control contrast, color, crop etc with cairo
.
Additionaly Cairo
in Tizen
provide some additional function and not support some functions.
check the following document.
And refer this document for using cairo
with evas image object
in tizen native app.
https://developer.tizen.org/development/api-guides/native-application/graphics/cairo?langredirect=1

pius lee
- 1,164
- 1
- 12
- 28