[ANN] PyGtkImageView 1.2.0 -- Image viewer widget for PyGTK

BJörn Lindqvist bjourne at gmail.com
Sun Apr 5 22:49:29 CEST 2009


I'm pleased to finally announce PyGtkImageView 1.2.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/chrome/common/releases/pygtkimageview-1.2.0.tar.gz
API doc:    http://trac.bjourne.webfactional.com/chrome/common/pygtkimageview-docs/
PDF:        http://trac.bjourne.webfactional.com/chrome/common/releases/pygtkimageview-1.2.0.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