Sha256: 2c1f2aae6274f0e88a0ab15e5bfeeeeb938e6cbf07ec075a6be29bbef62d7dce

Contents?: true

Size: 775 Bytes

Versions: 110

Compression:

Stored size: 775 Bytes

Contents

#!/usr/bin/env ruby
=begin
  xpm.rb - Ruby/GdkPixbuf sample script.

  Copyright (c) 2002-2006 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 =  Gdk::Pixbuf.new(r_xpm)
dst = src.scale(300, 300, Gdk::Pixbuf::INTERP_HYPER)

w.add(Gtk::Image.new(dst))
w.show_all

Gtk.main

Version data entries

110 entries across 110 versions & 2 rubygems

Version Path
gdk_pixbuf2-3.0.8-x86-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.8-x64-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.8 sample/xpm.rb
gdk_pixbuf2-3.0.7-x86-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.7-x64-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.7 sample/xpm.rb
gdk_pixbuf2-3.0.6-x64-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.6-x86-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.6 sample/xpm.rb
gdk_pixbuf2-3.0.5-x86-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.5-x64-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.5 sample/xpm.rb
gdk_pixbuf2-3.0.4-x86-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.4-x64-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.4 sample/xpm.rb
gdk_pixbuf2-3.0.3-x64-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.3-x86-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.3 sample/xpm.rb
gdk_pixbuf2-3.0.2-x64-mingw32 sample/xpm.rb
gdk_pixbuf2-3.0.2-x86-mingw32 sample/xpm.rb