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

Version Path
gdk_pixbuf2-3.4.1 sample/xpm.rb
gdk_pixbuf2-3.4.0 sample/xpm.rb
gdk_pixbuf2-3.3.9 sample/xpm.rb
gdk_pixbuf2-3.3.8 sample/xpm.rb
gdk_pixbuf2-3.3.7 sample/xpm.rb
gdk_pixbuf2-3.3.6 sample/xpm.rb
gdk_pixbuf2-3.3.5 sample/xpm.rb
gdk_pixbuf2-3.3.4 sample/xpm.rb
gdk_pixbuf2-3.3.3 sample/xpm.rb
gdk_pixbuf2-3.3.2 sample/xpm.rb
gdk_pixbuf2-3.3.1 sample/xpm.rb
gdk_pixbuf2-3.3.0 sample/xpm.rb
gdk_pixbuf2-3.2.9-x64-mingw32 sample/xpm.rb
gdk_pixbuf2-3.2.9-x86-mingw32 sample/xpm.rb
gdk_pixbuf2-3.2.9 sample/xpm.rb
gdk_pixbuf2-3.2.8-x64-mingw32 sample/xpm.rb
gdk_pixbuf2-3.2.8-x86-mingw32 sample/xpm.rb
gdk_pixbuf2-3.2.8 sample/xpm.rb
gdk_pixbuf2-3.2.7-x86-mingw32 sample/xpm.rb
gdk_pixbuf2-3.2.7-x64-mingw32 sample/xpm.rb