Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

edje_cc(1) [debian man page]

EDJE_CC(1)							 The edje compiler							EDJE_CC(1)

NAME
edje_cc - an edje compiler SYNOPSIS
edje_cc [OPTIONS] input_file.edc [output_file.edj] DESCRIPTION
edje_cc is a compiler for edje files EXAMPLES
edje_cc -v file.edc OPTIONS
-id image/directory Add a directory to look in for relative path images -fd font/directory Add a directory to look in for relative path fonts -v Verbose output -no-lossy Do NOT allow images to be lossy -no-comp Do NOT allow images to be stored with lossless compression -no-raw Do NOT allow images to be stored with zero compression (raw) -min-quality VAL Do NOT allow lossy images with quality < VAL (0-100) -max-quality VAL Do NOT allow lossy images with quality > VAL (0-100) -Ddefine_val= to CPP style define to define input macro definitions to the .edc source SEE ALSO
edje_decc(1) edje_recc(1) BUGS
Please reports bugs to the Pkg-E Team <pkg-e-devel@lists.alioth.debian.org> AUTHOR
This man page was written by Ronald Claveau for the Debian GNU/Linux system (but may be used by others). 0.5.0.042 Jan 29, 2007 EDJE_CC(1)

Check Out this Related Man Page

jpeg2swf(1)							     swftools							       jpeg2swf(1)

NAME
jpeg2swf - Converts jpeg images to SWF. Synopsis jpeg2swf [-options [value]] imagefiles[.jpg]|[.jpeg] [...] DESCRIPTION
This tool converts jpeg image files into an SWF animation. It takes any number of input pictures, and converts them to SWF one-by-one, where every converted picture is a separate frame in the target SWF. OPTIONS
-o, --output outputfile Explicitly specify output file. (Otherwise, output will go to stdout / output.swf) -q, --quality quality Set compression quality (1-100, 1=worst, 100=best). This option can be set independently for each image. -r, --rate framerate Set movie framerate (frames per second) -z, --zlib zlib Use Flash MX (SWF 6) Zlib encoding for the output. The resulting SWF will be smaller, but not playable in Flash Plugins of Version 5 and below. -M, --mx Use Flash MX H.263 compression (use for correlated images) -x, --xoffset offset horizontally offset images by offset -y, --yoffset offset vertically offset images by offset -X, --width width Force movie width to width (default: autodetect) -Y, --height height Force movie height to height (default: autodetect) -T, --flashversion version Set flash file version to version -v, --verbose level Set verbose level to level (0=quiet, 1=default, 2=debug) -V, --version Print version information and exit -f, --fit-to-movie Fit images to movie size -e, --export assetname Make importable as asset with assetname AUTHORS
Rainer Bohme <rfxswf@reflex-studio.de> Matthias Kramm jpeg2swf February 2012 jpeg2swf(1)
Man Page

13 More Discussions You Might Find Interesting

1. Programming

how to know if a directory is normal one or subdomain?

there are 2 directiries under public_html directory: public_html/images public_html/pictures "images" is a normal directory (uploaded by ftp) and "pictures" is a subdomain (created in cPanel). if using cpanel, I know "pictures" is subdomain because it is displayed as subdomain in cpanel.... (1 Reply)
Discussion started by: hello20009876
1 Replies

2. Shell Programming and Scripting

Remove duplicate phrase

I have a value VAL=XXXX_20061001_00 XXXX_20061001_03 XXXX_20061001_00 XXXX_20061002_00 XXXX_20061002_03 XXXX_20061003_00 The VAL has duplicates like XXXX_20061001_00 repeated twice. How to make the VAL with unique values. Thanks in advance. (6 Replies)
Discussion started by: kesu2k
6 Replies

3. UNIX for Dummies Questions & Answers

Time difference between each line info....

Hi all, here is a problem, i am having a data in a file of this format, cat filename|grep -ivn edc|tr -s ' ' +|cut -d+ f1,12 1 01:18:38 2007 25 01:43:38 2007 48 01:58:45 2007 71 02:11:02 2007 102 02:19:51 2007 and so on ........ ....... . here... (4 Replies)
Discussion started by: gsp
4 Replies

4. Shell Programming and Scripting

Recursive find and store

I HAVE A TEXT FILE CONTAINING THE VALUES 1.CPP 2.CPP 3.CPP 4.CPP 5.CPP 6.CPP I WANT TO TAKE EACH .CPP AND USE THE FIND COMMAND TO FIND THE LATEST VERSION OF THE FOLDER IN WHICH IT IS PRESENT. HOW DO I IMPLEMENT IT IN A WHILE LOOP I TRIED SOMETHING LIKE THIS WHILE CAT... (3 Replies)
Discussion started by: ultimatix
3 Replies

5. Shell Programming and Scripting

Cron job to move file from one directory to another

Hi, I have following directory structure Media (Inside media directory I have two folders namely videos and images) -->videos -->images Inside media directory I have some video files with extension .mp4 and images with extension of .jpg and .jpeg I want to write a cron job which will... (3 Replies)
Discussion started by: tusharkale
3 Replies

6. Shell Programming and Scripting

is sed useful here?

hi all, i have a file named VAL cat VAL @905544|0|{5|1|-1|-1|-1|1247559121|} the value which changes in this is 905544. i want to replace this '905544' value by other value say '905600' i am trying this i have taken this value '905544' to a file named $Curr and to be... (6 Replies)
Discussion started by: Prateek007
6 Replies

7. UNIX for Dummies Questions & Answers

Please help

i am a newbie to the site and as well web design. My main problem is I can only and heading text. I am having trouble posting additional images and as well as moving the images around the page. Please advise I feel so slow. :confused: (1 Reply)
Discussion started by: qu3t33
1 Replies

8. Web Development

store images into databases or path to file system files ?

hi, I need a quick information about storing images into mysql databases. Is more convenient to store a path to the filesystem folder in which the images are stored, or is possible to directly store the images into my tables ? thanks (2 Replies)
Discussion started by: aneuryzma
2 Replies

9. UNIX for Dummies Questions & Answers

Dump eMail image to directory

Hello everyone! I'm new and very happy to be here! Trying to create a quick idea: I want to take images sent to an eMail address on my domain (pics@mywebsite.com), and copy them into a directory. There will then be a page that displays those images. How could I go about this? I'm a script... (6 Replies)
Discussion started by: Diesel.
6 Replies

10. Shell Programming and Scripting

read alters stdout?

I have this simple script: read VAL echo "got '$VAL', return is $?" exit 42 When I comment out 'read', it works as expected: $ bash < rdtest.sh got '', return is 0 $ echo $? 42 $ ksh < rdtest.sh got '', return is 0 $ echo $? 42 $ ...but if read is not commented, suddenly it doesn't... (6 Replies)
Discussion started by: Corona688
6 Replies

11. UNIX for Dummies Questions & Answers

remove spaces in between file

hey, I have this file: ATOM 2510 HG12 VAL 160 8.462 15.861 1.637 ATOM 2511 HG13 VAL 160 9.152 14.510 0.725 ATOM 2512 CG2 VAL 160 6.506 16.579 -0.088 ATOM 2513 HG21 VAL 160 5.499 16.421 -0.478 ATOM 2514 HG22 VAL 160 6.417 16.984 ... (4 Replies)
Discussion started by: kanikasharma
4 Replies

12. Shell Programming and Scripting

script in perl for removing strings between a file

I have file that looks like: ATOM 2517 O VAL 160 8.337 12.679 -2.487 ATOM 2518 OXT VAL 160 7.646 12.461 -0.386 TER ATOM 2519 N VAL 161 -14.431 5.789 -25.371 ATOM 2520 H1 VAL 161 -15.336 5.698 -25.811 ATOM 2521 H2 VAL 161 -13.416 10.529 17.708 ATOM 2522 H3 VAL 161 -14.363 ... (4 Replies)
Discussion started by: kanikasharma
4 Replies

13. Shell Programming and Scripting

Batch downloading images from a site.

So there is a forum thread (with 100+ pages)where people have posted images, which on a 3rd party site like imgur or imageshack. I'm trying to download all those images. I tried wget -r -l1 --no-parent -nH -nd -P/tmp -A".gif,.jpg" LINK but this doesn't download it. Does anything know a... (1 Reply)
Discussion started by: Howkisl
1 Replies