Sha256: ae4f1305887ed843b89141c5fb5d12ffe037eacecf2e005047f6cd877a0d9214

Contents?: true

Size: 701 Bytes

Versions: 38

Compression:

Stored size: 701 Bytes

Contents

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

  Copyright (c) 2002-2020 Ruby-GNOME Project Team
  This program is licenced under the same licence as Ruby-GNOME.

  $Id: xpm.rb,v 1.5 2006/06/17 14:38:08 mutoh Exp $
=end

require 'gtk3'

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

38 entries across 38 versions & 1 rubygems

Version Path
gdk_pixbuf2-4.2.7 sample/xpm.rb
gdk_pixbuf2-4.2.6 sample/xpm.rb
gdk_pixbuf2-4.2.5 sample/xpm.rb
gdk_pixbuf2-4.2.4 sample/xpm.rb
gdk_pixbuf2-4.2.3 sample/xpm.rb
gdk_pixbuf2-4.2.2 sample/xpm.rb
gdk_pixbuf2-4.2.1 sample/xpm.rb
gdk_pixbuf2-4.2.0 sample/xpm.rb
gdk_pixbuf2-4.1.9 sample/xpm.rb
gdk_pixbuf2-4.1.8 sample/xpm.rb
gdk_pixbuf2-4.1.7 sample/xpm.rb
gdk_pixbuf2-4.1.6 sample/xpm.rb
gdk_pixbuf2-4.1.5 sample/xpm.rb
gdk_pixbuf2-4.1.4 sample/xpm.rb
gdk_pixbuf2-4.1.3 sample/xpm.rb
gdk_pixbuf2-4.1.2 sample/xpm.rb
gdk_pixbuf2-4.1.1 sample/xpm.rb
gdk_pixbuf2-4.1.0 sample/xpm.rb
gdk_pixbuf2-4.0.9 sample/xpm.rb
gdk_pixbuf2-4.0.8 sample/xpm.rb