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

raw2gif(1)						      General Commands Manual							raw2gif(1)

NAME
raw2gif - A program to convert RAW image data into GIF files. Only one image can be handled. The RAW image file is assumed to hold one pixel color in one byte, and therefore the file size must be Width times Height as specified by the -s option below. USAGE
raw2gif [-q] -s Width Height [-p ColorMapFile] [-h] RawFile If no RawFile is given, Raw2Gif will try to read RAW data from stdin. The generated GIF File is dumped to stdout. MEMORY REQUIRED
Line. OPTIONS
[-q] Quiet mode. Defaults off on MSDOS, on under UNIX. Controls printout of running scan lines. Use -q- to invert. -s Width Height the dimensions of the image MUST be specified in the command line. The RAW image file size must be exactly Width times Height bytes (each byte is one pixel color). [-p ColorMapFile] Color map to load for given RAW image. This file has 4 integers in line (ColorIndex Red Green Blue), and the ColorIndex is in order starting from 1. See GifClrMp, which can also use/create these bitmap files. If no color map is specified, uses the EGA 16 color pallete as default color map. [-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 raw2gif(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