Htechno
Htechno

Reputation: 6127

Zoomed PyGTK image without scale pixbuf

I want to display a gtk.Image with a high level of zoom, but scale the image to a new pixbuf with the gtk.gdk.Pixbuf methods waste a lot of memory and processor.

Are there some simply way to display a zoomed image?

Upvotes: 1

Views: 893

Answers (3)

FlorianLudwig
FlorianLudwig

Reputation: 21

Maybe GtkImageView helps: http://trac.bjourne.webfactional.com/

Upvotes: 1

markuz
markuz

Reputation: 919

I'll recommend Clutter http://www.clutter-project.org/

Upvotes: 0

Alexey Yakovenko
Alexey Yakovenko

Reputation: 494

it is not possible with gdk, i'm afraid.

try cairo or opengl.

Upvotes: 1

Related Questions