Blob Blame History Raw
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML><HEAD><TITLE>Picttoppm User Manual</TITLE></HEAD>
<BODY>
<H1>picttoppm</H1>
Updated: 17 June 2006
<BR>
<A HREF="#index">Table Of Contents</A>

<H2>NAME</H2>

picttoppm - convert a Macintosh PICT file to a PPM

<H2 id="synopsis">SYNOPSIS</H2>

<B>picttoppm</B>

[<B>-verbose</B>]

[<B>-fullres</B>]

[<B>-noheader</B>]

[<B>-quickdraw</B>]

<br>

[<B>-fontdir</B> <i>file</i>]

[<I>pictfile</I>]

<H2 id="description">DESCRIPTION</H2>

<p>This program is part of <a href="index.html">Netpbm</a>.

<p><b>picttoppm</b> reads a PICT file (version 1 or 2) and outputs a PPM
image.

<p>PICT is an image format that was developed by Apple Computer in 1984 as the
native format for Macintosh graphics.  A PICT image is encoded in QuickDraw
commands.  The PICT format is a meta-format that can be used for both bitmap
images and vector images.  PICT is also known as "Macintosh Picture"
format, or the QuickDraw Picture format.

<p>PICT files are primarily used to exchange graphics between various
Macintosh applications.

<p>In MacOS X, PDF replaces PICT as the main graphics format.

<H2 id="options">OPTIONS</H2>

<DL COMPACT>
<DT><B>-fontdir </B><I>file</I>

<DD>Make the list of BDF fonts in <i>file</i> available for use by
<b>picttoppm</b> when drawing text.  See below for the format of the
fontdir file.  This is in addition to the built-in fonts and those in
the file <b>fontdir</b>.

<DT><B>-fullres</B>

<DD>Force any images in the PICT file to be output with at least their
full resolution.  A PICT file may indicate that a contained
image is to be scaled down before output.  This option forces images
to retain their sizes and prevent information loss.
This option disables all PICT operations except images.

<DT><B>-noheader</B>

<DD>Do not assume the first 512 bytes of the file are a header.  All PICT
files have such a header, but this is useful when you have PICT data that was
not stored in the data fork of a PICT file.

<DT><B>-quickdraw</B>

<DD>Execute only pure quickdraw operations.  In particular, turn off
the interpretation of special PostScript printer operations.

<DT><B>-verbose</B>

<DD>Print a whole bunch of information about the PICT file and the
conversion process that only <b>picttoppm</b> hackers really care
about.

</DL>

<H2 id="limitations">LIMITATIONS</H2>

The PICT file format is a general drawing format.  <b>picttoppm</b>
does not recognize all the drawing commands, but it does fully
implement all image commands and mostly implement line, rectangle,
polygon and text drawing.  It is useful for converting scanned images
and some drawing conversion.

<p>With <b>-fullres</b>, <b>picttoppm</b> ignores text drawing commands.
Beginning in Netpbm 10.45 (December 2008), it issues a warning message
when it omits text for this reason.

<h2 id="fonts">FONTS</h2>

<p>Some of the information in a PICT file is text, with a number
indicating the font in which the text is supposed to rendered.
<b>picttoppm</b> has one built-in font, but you can add others by
directing <b>picttoppm</b> to BDF font files, which you do with font
directory files.

<p><b>picttoppm</b> automatically uses the file named <b>fontdir</b>
in the current directory, if it exists.  You may specify an additional
font directory file with the <b>-fontdir</b> option.

<P>Obviously the font definitions are strongly related to the
Macintosh.  You can find more font numbers and information about fonts
in Macintosh documentation.

<H3 id="fontdir">FONT DIR FILE FORMAT</H3>

<p>Each line in the file is either a comment or font information.  A
comment begins with <b>#</b>.  The font information consists of 4
whitespace separated fields.  The first is the font number, the second
is the font size in pixels, the third is the font style and the fourth
is the name of a BDF file containing the font.  The BDF format is
defined by the X Window System and is beyond the scope of this document.

<P>The font number indicates the type face.  Here is a list of known
font numbers and their faces.

<dl>
<dt>0       <dd>Chicago
<dt>1       <dd>application font
<dt>2       <dd>New York
<dt>3       <dd>Geneva
<dt>4       <dd>Monaco
<dt>5       <dd>Venice
<dt>6       <dd>London
<dt>7       <dd>Athens
<dt>8       <dd>San Franciso
<dt>9       <dd>Toronto
<dt>11      <dd>Cairo
<dt>12      <dd>Los Angeles
<dt>20      <dd>Times Roman
<dt>21      <dd>Helvetica
<dt>22      <dd>Courier
<dt>23      <dd>Symbol
<dt>24      <dd>Taliesin
</dl>

<P>The font style indicates a variation on the font.  Multiple
variations may apply to a font and the font style is the sum of the
variation numbers which are:

<dl>
<dt>1       <dd>Boldface
<dt>2       <dd>Italic
<dt>4       <dd>Underlined
<dt>8       <dd>Outlined
<dt>16      <dd>Shadow
<dt>32      <dd>Condensed
<dt>64      <dd>Extended
</dl>


<H2 id="seealso">SEE ALSO</H2>

Inside Macintosh volumes 1 and 5,
<A HREF="ppmtopict.html">ppmtopict</A>,
<A HREF="ppm.html">ppm</A>


<H2 id="author">AUTHOR</H2>

Copyright 1993 George Phillips

<HR>
<H2 id="inedex">Table Of Contents</H2>
<UL>
<LI><A HREF="#synopsis">SYNOPSIS</A>
<LI><A HREF="#description">DESCRIPTION</A>
<LI><A HREF="#options">OPTIONS</A>
<LI><A HREF="#limitations">BUGS</A>
<LI><A HREF="#fonts">FONTS</A>
<LI><A HREF="#seealso">SEE ALSO</A>
<LI><A HREF="#author">AUTHOR</A>
</UL>
</BODY>
</HTML>