summaryrefslogtreecommitdiff
path: root/graphics/tkpng (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Reset infofarmer due to maintainer-timeouts and no response to email.Mark Linimon2008-09-071-1/+1
| | | | Hat: portmgr
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-191-1/+1
| | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
* - Move from versioned tcl/tk CATEGORIES to simple tcl and tk categoriesPav Lucistnik2008-04-091-1/+1
| | | | With hat: portmgr
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-191-0/+1
| | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
* - De-4.x-ify most of my ports to save gnats from excessive abuseAndrew Pantyukhin2007-04-181-7/+1
| | | | - s/CSME/CENKES/ in my ports
* - Convert existing ports to a new bsd.tcl.mk orderPav Lucistnik2007-04-021-2/+0
| | | | | | PR: ports/109097 Submitted by: Martin Matuska <martin@matuska.org> Tested on: pointyhat exp-run
* - Mark broken on 4.xAndrew Pantyukhin2006-11-071-1/+7
| | | | Reported by: pointyhat via kris
* Add port graphics/tkpng:Andrew Pantyukhin2006-10-084-0/+65
This port implements support for loading and using PNG images with Tcl/Tk. Although other extensions such as Img also add support for PNG images, I wanted something that was lightweight, did not depend on libpng, and which would be suitable for inclusion in the Tk core, as Tk does not currently support any image formats natively that take advantage of its internal support for alpha blending, and alpha antialiasing and drop shadows really go a long way toward beautifying Tk applications. At this time, the package supports reading images from files or binary data. Base64 decoding is supported as of version 0.6. Exporting images to PNG format is not supported yet. The package supports the full range of color types, channels and bit depths from 1 bit black & white to 16 bit per channel full color with alpha (64 bit RGBA) and interlacing. Ancillary "chunks" such as gamma, color profile, and text fields are ignored, although they are checked at a minimum for correct CRC. WWW: http://www.muonics.com/FreeStuff/TkPNG/ Author: Michael Kirkham <mikek@muonics.com>