[ANN] PyGtkImageView 1.1.0 -- Image viewer widget for PyGTK
BJörn Lindqvist
bjourne at gmail.com
Thu Mar 13 01:18:35 CET 2008
I'm pleased to finally announce PyGtkImageView 1.1.0!
Description
-----------
GtkImageView is a simple image viewer widget for GTK+. Similar to the
image viewer panes in gThumb or Eye of Gnome. It makes writing image
viewing and editing applications easy. Among its features are:
* Mouse and keyboard zooming.
* Scrolling and dragging.
* Adjustable interpolation.
* Fullscreen mode.
* GIF animation support.
* Ability to make selections.
* Extensible using a tool system.
PyGtkImageView is the Python bindings for GtkImageView.
PyGtkImageView Download
-----------------------
Subversion: svn co http://publicsvn.bjourne.webfactional.com/pygtkimageview
Tarball: http://trac.bjourne.webfactional.com/attachment/wiki/WikiStart/pygtkimageview-1.1.0.tar.gz
API doc: http://trac.bjourne.webfactional.com/chrome/common/pygtkimageview-docs/
PDF: http://trac.bjourne.webfactional.com/attachment/wiki/WikiStart/pygtkimageview-1.1.0-api.pdf
Project website: http://trac.bjourne.webfactional.com
Examples
--------
Here is the canonical example for using the widget::
import gtk
import gtk.gdk
import gtkimageview
view = gtkimageview.ImageView()
scroll = gtkimageview.ImageScrollWin(view)
# Where "box" is a gtk.Box already part of your layout.
box.pack_start(scroll)
pixbuf = gtk.gdk.pixbuf_new_from_file("someimage.png")
view.set_pixbuf(pixbuf)
--
mvh Björn
More information about the Python-announce-list
mailing list