Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

winicontoppm(1) [minix man page]

winicontoppm(1)                                               General Commands Manual                                              winicontoppm(1)

NAME
winicontoppm - convert a Windows .ico file into 1 or more portable pixmap files SYNOPSIS
winicontoppm [-writeands] [-allicons|-bestqual] [-multippm] [-verbose] [iconfile] [ppmdestfile] DESCRIPTION
Reads a Microsoft Windows .ico file, converts it to one or more ppms. A Windows icon contains 1 or more images, at different resolutions and color depths. Each image has an 'and' mask, which contains transparancy data. By default, the output goes to Standard Output. If you specify ppmdestfile, output goes into one or more files named as follows. If it's just one file (i.e. you specify the -multippm option or don't specify -allicons), the file specification is ppmdestfile.ppm. If it's mul- tiple files, their file specifications are ppmdestfile_1.ppm, ppmdestfile_2.ppm, etc. When you specify the -writeands option, the filenames above are modified to include the string xor as in ppmdestfile_xor.ppm or ppmdest- file_xor_1.ppm. winicontoppm can convert images with 1, 4, 8, 24 or 32 bits per pixel (bpp). OPTIONS
-writeands For each icon written, also write the 'and' (transparancy) mask as a seperate PBM file. It's name is of the form ppmdest- file_and.pbm or ppmdestfile_and_1.pbm. -allicons Extract all images from the .ico file. -bestqual Extract only the best quality (largest, then highest bpp) image from the .ico file. -multippm Write all ppms to a single file. SEE ALSO
ppmtowinicon(1), ppm(5) AUTHOR
Copyright (C) 2000, 2003 by Lee Benfield. 22 May 2000 winicontoppm(1)

Check Out this Related Man Page

img-ppm(n)																img-ppm(n)

NAME
img-ppm - Img, Portable Pixmap format (ppm) SYNOPSIS
package require Tk package require img::ppm ?1.3? image create photo ?name? ?options? DESCRIPTION
The package img::ppm is a sub-package of Img. It can be loaded as a part of the complete Img support, via package require Img, or on its own, via package require img::ppm. Like all packages of Img it does not provide new commands, but extends the existing Tk command image so that it supports files containing raster images in the Portable Pixmap format (ppm). More specifically img::ppm extends Tk's photo image type. The name of the new format handler is ppm. This handler does not provide additional configuration options. All of the above means that in a call like image create photo ?name? ?options? [1] Image data in ppm format (options -data and -file) is detected automatically. [2] The format name ppm is recognized by the option -format. SUPPORTED PPM TYPES
There are two types of PPM files: RAW (binary) and ASCII. Currently only the RAW format is implemented. 8-bit pixels: Grayscale, also known as PGM. 24-bit pixels: True-color (RGB, each channel 8 bit). List of currently supported features: Type | Read | Write | | -file | -data | -file | -data | ---------------------------------------- 8-bit | Yes | Yes | Yes | Yes | 24-bit | Yes | Yes | Yes | Yes | SEE ALSO
img-bmp, img-gif, img-ico, img-intro, img-jpeg, img-pcx, img-pixmap, img-png, img-ppm, img-ps, img-sgi, img-sun, img-tga, img-tiff, img- window, img-xbm, img-xpm KEYWORDS
image handling, ppm, tk COPYRIGHT
Copyright (c) 1995-2003 Jan Nijtmans <nijtmans@users.sourceforge.com> Img 1.3 img-ppm(n)
Man Page