You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Daniel Juyung Seo 1358e68aff ethumb: Updated .gitignore 12 years ago
..
data From: André Ribes <andre.ribes@gmail.com> 13 years ago
doc I'm losing myself between the things I can't test and those I just forget 12 years ago
m4 add file from andre. 13 years ago
src ethumb: reorder parameter to match other EFL callback API. 12 years ago
.gitignore ethumb: Updated .gitignore 12 years ago
ABOUT-NLS ethumb - Thumbnailing Library 15 years ago
AUTHORS ethumb: fix wrong dirty detection. 12 years ago
BUGS ethumb - Thumbnailing Library 15 years ago
COPYING Changing Ethumb license from LGPL3 to LGPL2. 13 years ago
ChangeLog ethumb - Thumbnailing Library 15 years ago
Makefile.am add ethumb.spec back in dist 13 years ago
NEWS ethumb - Thumbnailing Library 15 years ago
README All packages should have README... 14 years ago
TODO todo... 14 years ago
autogen.sh that's it - remove autom4te.cache dirs again... - keep having to many 12 years ago
configure.ac Ethumb: AM_PROG_CC_STDC is deprecated 12 years ago
ethumb.pc.in Move Ethumb headers to own directory. 13 years ago
ethumb.spec.in Since the SVN revision is now included in %{version}, it's redundant 12 years ago
ethumb_client.pc.in Move Ethumb headers to own directory. 13 years ago
org.enlightenment.Ethumb.service.in Added ethumbd (ethumb). 15 years ago

README

                Ethumb - Thumbnail generation library


FEATURES
========

* create thumbnails with a predefined frame (possibly an edje frame);
* have an option to create fdo-like thumbnails;
* have a client/server utility.


API
===

It's possible to set the following properties of thumbnails:

* size
* format (jpeg, png, eet...)
* aspect:
* have crop?
* crop alignment?
* video:
* video_time
* document:
* page
* frame: edje file, group and swallow part to use when generating
thumbnails
* directory: directory where to save thumbnails
* category: to be used as DIRECTORY/CATEGORY/md5.format

Path generation should provide the following:

* If no path to save the thumbnail is specified, the following is used:
* if CATEGORY, return ~/.thumbnail/CATEGORY/md5.format
* else if size (128x128 or 256x256), format (png), aspect (keep
aspect, no crop) and no frame matches, return
~/.thumbnail/{normal,large}/md5.png
* else return WxH-FORMAT-[framed-]ASPECT

Client server provides the following:
* multiple client support
* per-client configuration, avoid exchanging parameters over and over
again
* per-client queue, when client disconnect (ie: dies), remove whole
queue
* all clients have same priority, so queue is mixed for processing
* cancel thumb generation request
* communication over (for now) dbus and (future) ecore-ipc and unix
sockets
* interface of client library is independent of the communication
method selected