Sha256: 5e6286e74a50077a9ab735146bf0ffb40fc4f9e1a23e3ef1c48cb26a0025b328
Contents?: true
Size: 758 Bytes
Versions: 90
Compression:
Stored size: 758 Bytes
Contents
#!/usr/bin/env ruby =begin xpm.rb - Ruby/GdkPixbuf sample script. Copyright (c) 2002-2016 Ruby-GNOME2 Project Team This program is licenced under the same licence as Ruby-GNOME2. $Id: xpm.rb,v 1.5 2006/06/17 14:38:08 mutoh Exp $ =end require 'gtk2' r_xpm = [ "10 10 3 1", " c None", ". c #FE0B0B", "+ c #FFFFFF", "+.......++", "+.. ..+", "+.. ..+", "+.. ...+", "+.......++", "+.....++++", "+..++..+++", "+..++...++", "+..+++...+", "+..++++..+"] w = Gtk::Window.new w.signal_connect('delete-event') do Gtk.main_quit end src = GdkPixbuf::Pixbuf.new(:xpm => r_xpm) dst = src.scale(300, 300, :hyper) w.add(Gtk::Image.new(dst)) w.show_all Gtk.main
Version data entries
90 entries across 82 versions & 2 rubygems