Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gif2ps(1) [debian man page]

gif2ps(1)						      General Commands Manual							 gif2ps(1)

NAME
gif2ps - GIF-to-PostScript conversion. USAGE
gif2ps [-q] [-x] [-y] [-s sx sy] [-p px py] [-i] [-n copies] [-h] gif-file If no gif-file is given, Gif2PS will try to read a GIF file from stdin. MEMORY REQUIRED
Line. OPTIONS
[-q] quiet mode. Defaults off on MSDOS, on under UNIX. Controls printout of running scan lines. Use -q- to invert. [-x] Force image to be horizontal (`landscape mode'). By default image will be positioned so it will be the biggest. If -x is given image will be scaled to be biggest possible horizontally. [-y] Force vertical (`portrait mode'); analogous to -x. [-s sx sy] Force image size to be sx by sy inches. If image will exit page dimensions, it will scream and die. Page dimensions are 8.5 by 11.0 inches but only 7.5 by 9.0 are assumed to be printable. [-p pc py] Force image lower left corner to be as px py. If this would overrun the page's dimensions, it will scream and die. [-i] Image will be inverted (Black -> White and vice versa). Mapping from colors is done by 0.3 * RED 0.59 * GREEN 0.11 * BLUE and sometimes inverting the image will look better. [-n copies] Number of copies to print. 1 by default. [-h] Print one line of command help, similar to Usage above. AUTHOR
Gershon Elber Man page created by T.Gridel <tgridel@free.fr>, originally written by Eric S. Raymond <esr@thyrsus.com> giflib-tools gif2ps(1)

Check Out this Related Man Page

gifasm(1)						      General Commands Manual							 gifasm(1)

NAME
gifasm - A program to assemble multiple GIF files into one, or disassemble a single GIF file with multiple images into single image files. USAGE
gifasm [-q] [-a] [-d OutFileName] [-h] gif-file... If no gif-file is given, GifAsm will try to read a GIF file from stdin, if in disassembly mode only (-d). MEMORY REQUIRED
Line. OPTIONS
[-q] Quiet mode. Defaults off on MSDOS, on under UNIX. Controls printout of running scan lines. Use -q- to invert. [-a] Assemble. This is the default, and the GifFile(s) are assembled to stdout. Note the screen descriptor (including screen color map) is taken from the first file, while other screen descriptors are ignored. As this tool requires at least 2 GIF files as input, no attempt will be made to read stdin if none specified on command line. [-d OutFileName] Disassemble GifFile (if specified on command line) or stdin, into several files of the form OutFileNameXX, where XX are two decimal digits. Obviously up to 100 files can be generated this way. Note: in this mode nothing is sent to stdout. [-h] Print one line of command line help, similar to Usage above. AUTHOR
Gershon Elber Man page created by T.Gridel <tgridel@free.fr>, originally written by Eric S. Raymond <esr@thyrsus.com> giflib-tools gifasm(1)
Man Page

5 More Discussions You Might Find Interesting

1. Solaris

top biggest files

hi all, is there any way how i can output the top 10-30 biggest files for all filesystem? using du -sh * is quite tedious since i have to move from 1 directory at a time. thanks (3 Replies)
Discussion started by: 3rr0r_3rr0r
3 Replies

2. Shell Programming and Scripting

File deliminated with | character - How do I change 1 value

Hi All, I'm struggling with a problem. Data file example: Brown|32 inches|apple|monkey Green|12 feet|grape|cat Blue|32 inches|banana|dog Black|23 inches|pear|horse I need to change the value '32 inches' in the third line, and only the third line, while keeping the rest of the file the... (7 Replies)
Discussion started by: jsmith_4242
7 Replies

3. Shell Programming and Scripting

Top 5 biggest file

Hi , I need to get a list of name and size , of the the top 5 biggest file under the current directory , in decending order Thank You (4 Replies)
Discussion started by: yoavbe
4 Replies

4. UNIX for Dummies Questions & Answers

List biggest files (Not Directories)

Hello, can you please help me writing a command that would output the biggest files on my system from biggest to smallest? I want this to print only the files, not the directories. I have tried du -a ~ | sort -nr | head -10 However, this also prints out all the directories - which I do... (8 Replies)
Discussion started by: tonydaniels1980
8 Replies

5. Shell Programming and Scripting

Largest number in array. Help!

I need to calculate the biggest number in array size n. Example: Users enter: 1 7 4 9 The biggest number is : 9 Simple but I'm really new on this on Shell/Bash! Anything will be helpful! Thanks! #!/bin/bash printf "\tEnter a list of numbers, with spaces: " read -a ARRAY BIG=$1... (5 Replies)
Discussion started by: Sundown
5 Replies