Class: GdkPixbuf::Pixbuf

Inherits:
Object
  • Object
show all
Extended by:
GLib::Deprecatable
Defined in:
lib/gdk_pixbuf2/pixbuf.rb,
lib/gdk_pixbuf2/deprecated.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ Pixbuf

Returns a new instance of Pixbuf.



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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 21

def initialize(*args)
  case args.size
  when 1
    case args[0]
    when Hash
      initialize_with_hash(args[0])
    when String
      message = "#{caller[0]}: #{self.class}.new(path) is deprecated. "
      message << "Use #{self.class}.new(:file => path) instead."
      warn message
      initialize_raw(args[0])
    when Array
      message = "#{caller[0]}: #{self.class}.new(xpm) is deprecated. "
      message << "Use #{self.class}.new(:xpm => xpm) instead."
      warn message
      initialize_new_from_xpm_data(args[0])
    else
      raise ArgumentError, "must be options: #{args[0].inspect}"
    end
  when 2
    message = "#{caller[0]}: "
    message << "#{self.class}.new(data, copy_pixels) is deprecated. "
    message << "Use Gio::Resource instead."
    warn message
    initialize_from_inline(*args)
  when 3
    message = "#{caller[0]}: "
    message << "#{self.class}.new(path, width, height) is deprecated. "
    message << "Use #{self.class}.new(:file => path, :width => width, "
    message << ":height => height) instead."
    warn message
    initialize_new_from_file_at_size(*args)
  when 4
    message = "#{caller[0]}: "
    message << "#{self.class}.new(path, width, height, "
    message << "preserve_aspect_ratio) is deprecated. "
    message << "Use #{self.class}.new(:file => path, :width => width, "
    message << ":height => height, "
    message << ":preserve_aspect_ratio => preserve_aspect_ratio) instead."
    warn message
    initialize_new_from_file_at_scale(*args)
  when 5
    message = "#{caller[0]}: "
    message << "#{self.class}.new(colorspace, has_alpha, bits_per_sample, "
    message << "width, height) is deprecated."
    message << "Use #{self.class}.new(:colorspace => colorspace, "
    message << ":has_alpha => has_alpha, "
    message << ":bits_per_sample => bits_per_sample, "
    message << ":width => width, "
    message << ":height => height) instead."
    warn message
    initialize_new(*args)
  when 7
    message = "#{caller[0]}: "
    message << "#{self.class}.new(data, colorspace, has_alpha, "
    message << "bits_per_sample, width, height) is deprecated."
    message << "Use #{self.class}.new(:data => data, "
    message << ":colorspace => colorspace, "
    message << ":has_alpha => has_alpha, "
    message << ":bits_per_sample => bits_per_sample, "
    message << ":width => width, "
    message << ":height => height) instead."
    warn message
    initialize_new_from_data(*args)
  else
    super
  end
end

Class Method Details

.new(*args, &block) ⇒ Object



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
# File 'lib/gdk_pixbuf2/deprecated.rb', line 26

def new(*args, &block)
  if args[0].is_a?(Pixbuf)
    message = "#{caller[0]}: #{self}.new(pixbuf, ...) is deprecated. "
    message << "Use pixbuf.new_subpixbuf(...)  instead."
    warn(message)
    args[0].new_subpixbuf(*args[1..-1])
  elsif args.size == 1 and args[0].is_a?(Hash)
    options = args[0]
    src_pixbuf = options[:src_pixbuf]
    if src_pixbuf
      message = "#{caller[0]}: "
      message << "#{self}.new(:src_pixbuf => pixbuf, ...) is deprecated. "
      message << "Use pixbuf.new_subpixbuf(...)  instead."
      warn(message)
      src_pixbuf.new_subpixbuf(options[:src_x],
                               options[:src_y],
                               options[:width],
                               options[:height])
    else
      super
    end
  else
    super
  end
end

Instance Method Details

#composite(options) ⇒ Object



215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 215

def composite(options)
  destination = options[:destination] || options[:dest]
  dest_x = options[:destination_x] || options[:dest_x] || 0
  dest_y = options[:destination_y] || options[:dest_y] || 0
  dest_width = options[:destination_width] || options[:dest_width]
  dest_height = options[:destination_height] || options[:dest_height]

  destination ||= Pixbuf.new(colorspace,
                             has_alpha?,
                             bits_per_sample,
                             dest_x + dest_width,
                             dest_y + dest_height)
  destination.composite!(self, options)
  destination
end

#composite!(source, options) ⇒ Object



231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 231

def composite!(source, options)
  dest_x = options[:destination_x] || options[:dest_x] || 0
  dest_y = options[:destination_y] || options[:dest_y] || 0
  dest_width = options[:destination_width] || options[:dest_width]
  dest_height = options[:destination_height] || options[:dest_height]
  offset_x = options[:offset_x] || 0.0
  offset_y = options[:offset_y] || 0.0
  scale_x = options[:scale_x] || (dest_width / source.width.to_f)
  scale_y = options[:scale_y] || (dest_height / source.height.to_f)
  interpolation_type = options[:interpolation_type] ||
    options[:interp_type] ||
    :bilinear
  overall_alpha = options[:overall_alpha] || 255
  check_x = options[:check_x] || 0
  check_y = options[:check_y] || 0
  check_size = options[:check_size]
  color1 = options[:color1] || 0x999999
  color2 = options[:color2] || 0xdddddd

  if check_size
    source.composite_color(self,
                           dest_x,
                           dest_y,
                           dest_width,
                           dest_height,
                           offset_x,
                           offset_y,
                           scale_x,
                           scale_y,
                           interpolation_type,
                           overall_alpha,
                           check_x,
                           check_y,
                           check_size,
                           color1,
                           color2)
  else
    source.composite_raw(self,
                         dest_x,
                         dest_y,
                         dest_width,
                         dest_height,
                         offset_x,
                         offset_y,
                         scale_x,
                         scale_y,
                         interpolation_type,
                         overall_alpha)
  end
end

#composite_rawObject



214
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 214

alias_method :composite_raw, :composite

#dupObject



160
161
162
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 160

def dup
  copy
end

#fill!(pixel) ⇒ Object



164
165
166
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 164

def fill!(pixel)
  fill(pixel)
end

#initialize_rawObject



19
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 19

alias_method :initialize_raw, :initialize

#rotate(angle) ⇒ Object



168
169
170
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 168

def rotate(angle)
  rotate_simple(angle)
end

#saturate_and_pixelate(saturation, pixelate) ⇒ Object



173
174
175
176
177
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 173

def saturate_and_pixelate(saturation, pixelate)
  dest = dup
  saturate_and_pixelate_raw(dest, saturation, pixelate)
  dest
end

#saturate_and_pixelate_rawObject



172
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 172

alias_method :saturate_and_pixelate_raw, :saturate_and_pixelate

#save(filename, type, options = {}) ⇒ Object

TODO: test TODO: Improve API by Hash



181
182
183
184
185
186
187
188
189
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 181

def save(filename, type, options={})
  keys = []
  values = []
  options.each do |key, value|
    keys << key
    values << value
  end
  savev(filename, type, keys, values)
end

#scale(*args) ⇒ Object

TODO: test TODO: Improve API by Hash



194
195
196
197
198
199
200
201
202
203
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 194

def scale(*args)
  case args.size
  when 2, 3
    width, height, interp_type = args
    interp_type ||= :bilinear
    scale_simple(width, height, interp_type)
  else
    scale_raw(*args)
  end
end

#scale!(source, *args) ⇒ Object

TODO: test TODO: Improve API by Hash



207
208
209
210
211
212
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 207

def scale!(source, *args)
  if args.size == 8
    args << :bilinear
  end
  source.scale_raw(self, *args)
end

#scale_rawObject



191
# File 'lib/gdk_pixbuf2/pixbuf.rb', line 191

alias_method :scale_raw, :scale