png dencoder
php_qrencode 0.1
php_qrencode is a PHP extension to generate qrcode. more>>
only 2 function to generate qr code.
< code >
$qr = qr_encode (test for qrcode);
qr_save ($qr, 1.png);
< /code >
or you can output direct to stdout.
< code >
$qr = qr_encode (test for qrcode);
header ("Content-type: image/PNG");
qr_save ($qr);
< /code >
resource = qr_encode (string $text, [ int $version, int $mode, int $casesensitive]);
bool = qr_save (resource $qr, [ string $filename] );
Pngcrush 1.7.0
Pngcrush 1.7.0 is yet another extremely useful utility for everyone. It is actually an optimizer for PNG (Portable Network Graphics) files more>>
Pngcrush 1.7.0 is yet another extremely useful utility for everyone. It is actually an optimizer for PNG (Portable Network Graphics) files. It can be run from a commandline in an MSDOS window, or from a UNIX or LINUX commandline.
Its main purpose is to reduce the size of the PNG IDAT datastream by trying various compression levels an PNG filter methods. It also can be used to remove unwanted ancillary chunks, or to add certain chunks including gAMA, tRNS, iCCP, and textual chunks.
Please note that when statically linked to the supplied zlib code, this script is believed to be immune to the zlib-1.1.3 "double-free" bug, since by default it detects and rejects any "double-free" attempt. It merely generates a "Decompression Error" message and rejects the file.
Enhancements: Jul 18 2009
- Save (but do not recompress) APNG chunks if the output file has the ".apng" extension and the color_type and bit_depth are not changed.
pngcheck 2.3.0
pngcheck is the official PNG tester and debugger. more>>
For example, it can be used to print the basic statistics about an image (dimensions, bit depth, etc.); to list the color and transparency info in its palette (assuming it has one); or to extract the embedded text annotations.
All PNG and JNG chunks are supported, plus almost all MNG chunks (everything but PAST, MAGN, DISC, DROP, DBYK, ORDR, and pHYg). This is a command-line program with batch capabilities (e.g., "pngcheck *.png").
Enhancements:
- This version adds an option to colorize the output (using ANSI colors), enhances the verbose output for interlaced images, and fixes three bugs that showed up in the most recent release of the brokensuite test images.
OpenOffice.org 2.2.1
OpenOffice.org is an Open Source version of StarOffice. more>>
It is an international office suite that will run on all major platforms and provide access to all functionality and data through open-component based APIs and an XML- based file format.
OpenOffice.org suite establishes the necessary facilities to make this open source technology available to the developer community.
Here are some screenshots from the OpenOffice.org 2.0:
OpenOffice.org Base:
http://img131.imageshack.us/img131/4061/ooobase0nc.png
OpenOffice.org Calc:
href="http://img113.imageshack.us/img113/8435/ooocalc1be.png
OpenOffice.org Draw:
href="http://img127.imageshack.us/img127/2332/ooodraw2as.png
OpenOffice.org Impress:
http://img127.imageshack.us/img127/6311/oooimpress1mn.png
OpenOffice.org Math:
http://img140.imageshack.us/img140/601/ooomath8ju.png
OpenOffice.org Writer:
http://img140.imageshack.us/img140/7293/ooowriter5ao.png
clip2png 2
clip2png is a native java utility that easily saves your current clipboard image. more>>
No setup or configuration required - just run the jar!
Send to Coppermine 1.0
Send to Coppermine is a service menu for send a jpeg/gif/png file to a Coppermine gallery install. more>>
The add-on has been tested on Fedora core 2 and 3 (should work with FC4)
PNG and GIF support depends on your coppermine settings.
You can add keywords and description for the image while uploading.
This add-on requires the Coppermine API which we have already released.
The attached tarball contains a copy of API and two other files needed.
Installation:
1. Untar the attached tarball.
2. Copy the api folder to your coppermines root directory.
3. Copy kdesh to your home directory.
4. Copy Send2Coppermine.desktop to your/home/.kde/share/apps/konqueror/servicemenus (create servicemenus folder if not already there)
5. Now open kdesh in your favourite editor and modify the values of aid, username, password and URL to your coppermine installation.
Currently, the album id where photo is uploaded needs to be hardcoded in this file. The future version may allow choose album for each picture.
a2png 0.1.5
a2png is a UNIX program that converts plain text into PNG images. more>>
a2png is written in C and distributed under the GNU General Public License v2.
Example:
The last image below was generated with the following command:
$ head -80 a2png.c | tail -40 | a2png --crop - --font-size=0.015 --size=800x800 -v --overwrite
output format: PNG ARGB32
output dimension: 800x800 pixels
reading standard input
cropping output image to 456x480 pixels
writing stdin.png
Enhancements:
- When using --html-input with non-jp2a formatted files, fall back on textfile parsing.
pypng 0.0.9
Python PNG encoder/decoder more>>
Requirements: Python
pngnq 0.4.1
pngnq quantizes PNG images to 8-bit palette mode with alpha channel support. more>>
This is a variant on Greg Roelfs pngquant program, using the Neuquant algorithm by Anthony Dekker instead of a median cut filter.
pngnq has been tested on a range of images, and produces nice results.
Enhancements:
- A -n option was added for choosing the number of colours to quantize to.
- A -V option was added for printing version info.
- A bug that caused only 3/4 of pixels to be scanned was fixed.
- Quantized images should now be more accurate.
- A simple image comparison program was added.
eq2png 0.01
eq2png is a simple Perl script to make it painless to produce Portable Network Graphic (PNG) images for OpenOffice Impress. more>>
Suppose you had a LaTeX snippet in a file named example-equation.tex: To produce the PNG image of this with black foreground and transparent background (the default), youd type:
eq2png example-equation.tex
INSTALLATION:
Youll need ImageMagick, dvips, and Perl.
Just copy the script somewhere into your path, and create a config file if you dont
like the default behavior.
EXAMPLE USAGE:
1) Produce an image of a equation at the command line:
eq2png int{a + b} = c -o intergral.png
If you dont specify an output file, it will default to eq.png
If you add the -b flag, it will make your equation bold (or try to). This is nice for presentations (where sometimes
thin lines dissapear).
2) Produce an image of .tex file snippet. The .tex file should only contain LaTeX code
code you want rendered (not preamble or other such stuff, which gets wrapped around your snippet).
For example, a file equation.tex might include one line, sum_{a}^b = x!.
You can then produce an image of this in the following way:
eq2png equation.tex #defaults to producing a png file with the same name, i.e., equation.png
or,
eq2png equation.tex -o outputfile.png #produce a png file with the name outputfile.png
NOTE: eq2png will only assume a filename is a .tex snippet if it ends in ".tex". So,
eq2png equation.eq
will produce a png image of the string equation.eq (probably not what you want).
To specify that the string is a filename, use the -f flag, e.g.,
eq2png -f equation.eq -o outputfile.png
NOTE: if you want to include LaTeX macros in your equations, just place a file named macros.tex (or symlink)
in your working directory. It will be included in the .tex code generated to produce your png file.
NOTE: if you need to include special LaTeX packages, see the config file stuff below.
PNG Plug-In 1.1.6
PNG plug-in provides Portable Network Graphics (PNG) file load & save modules for The GIMP. more>>
Using the PNG Plug-In:
Figure 1 shows the PNG save options window.
The Interlace toggle button selects interlaced output.
The Compression Level slider controls how much compression is applied to the image (0 = none, 9 = maximum).
Pytexipng 0.1
Pytexipng provides a LaTeX formula converter to png images using a nice GTK gui. more>>
Pytexipng can convert a LaTeX formula into a png image file that can be used on any WYSIWYG word processor application as OpenOffice.org Writer, Abiword or KWord.
Png2ico for Linux 20021208
Png2ico,converting PNG files to Windows icon resource files. more>> Converts PNG files to Windows icon resource files. If youre looking for a program to create a favicon.ico for your website, look no further.
The program is extremely simple to use. To create a favicon.ico that contains a logo in the resolutions 16x16 and 32x32 (an icon can contain multiple images of different sizes, but a single 16x16 image is enough for a favicon), you would use a command like the following: png2ico favicon.ico logo16x16.png logo32x32.png.<<less
SendmailAnalyzer 3.0
Sendmail Analyzer is a Perl script reporting full HTML and graph sendmail usage reports. more>>
Statistics are generated per hour, day, month and year. Graphs are in PNG format.

Finddouble 1.4
Finddouble searches directories for file duplicate. more>> finddouble 1.4 : is a Linux/Mac application. It searches directories for file duplicate. Very usefull to find copies of the same file : images, png, jpe, music, mp3, any kind of file.<<less