1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
#!/usr/bin/env ruby
=begin
scale.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: scale.rb,v 1.10 2006/06/17 14:38:08 mutoh Exp $
=end
require 'gtk3'
filename = ARGV[0]
unless filename
puts "ruby #{$0} filename"
exit(1)
end
vbox = Gtk::Box.new(:vertical)
src = GdkPixbuf::Pixbuf.new(:file => filename)
vbox.add(Gtk::Image.new(:pixbuf => src))
dst = src.scale(200, 200, :nearest)
dst.scale!(src, 60, 60, 90, 90, -50, 50, 6, 3)
vbox.add(Gtk::Image.new(:pixbuf => dst))
dst2 = GdkPixbuf::Pixbuf.new(:colorspace => :rgb,
:has_alpha =>true,
:bits_per_sample => 8,
:width => 200,
:height => 200)
dst2.scale!(src, 0, 0, 100, 100, 0, 0, 1.5, 1.5)
vbox.add(Gtk::Image.new(:pixbuf => dst2))
dst3 = GdkPixbuf::Pixbuf.new(:colorspace => :rgb,
:has_alpha =>true,
:bits_per_sample => 8,
:width => 200,
:height => 200)
dst3.scale!(src, 0, 0, 200, 200, 0, 0, 5, 3, :hyper)
vbox.add(Gtk::Image.new(:pixbuf => dst3))
window = Gtk::Window.new
window.signal_connect('delete-event') do
Gtk.main_quit
end
window.add(vbox).show_all
Gtk.main
|