Class: Vips::Thumbnail::Resizer

Inherits:
Object
  • Object
show all
Defined in:
lib/vips/thumbnail/resizer.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(input_path = nil, **options, &block) ⇒ Resizer

Returns a new instance of Resizer.



26
27
28
29
30
31
32
33
# File 'lib/vips/thumbnail/resizer.rb', line 26

def initialize(input_path = nil, **options, &block)
	@input_path = input_path
	@options = options
	
	@block = block || self.method(:load)
	
	@input_image = nil
end

Instance Attribute Details

#input_pathObject (readonly)

Returns the value of attribute input_path.



35
36
37
# File 'lib/vips/thumbnail/resizer.rb', line 35

def input_path
  @input_path
end

#optionsObject (readonly)

Returns the value of attribute options.



36
37
38
# File 'lib/vips/thumbnail/resizer.rb', line 36

def options
  @options
end

Instance Method Details

#flush!Object



38
39
40
# File 'lib/vips/thumbnail/resizer.rb', line 38

def flush!
	@input_image = nil
end

#input_aspect_ratioObject



50
51
52
# File 'lib/vips/thumbnail/resizer.rb', line 50

def input_aspect_ratio
	Rational(input_image.width, input_image.height)
end

#input_imageObject



42
43
44
45
46
47
48
# File 'lib/vips/thumbnail/resizer.rb', line 42

def input_image
	unless @input_image
		@input_image = @block.call
	end
	
	return @input_image
end

#resize_to_fill(output_size) ⇒ Vips::Image

Resize the image to completely fill the desired size, if possible.

Returns:

  • (Vips::Image)

    if the image could be resized, otherwise ‘nil`.



56
57
58
59
60
61
62
63
# File 'lib/vips/thumbnail/resizer.rb', line 56

def resize_to_fill(output_size)
	width, height = *output_size
	
	# We can only fill and crop if the input image is BIGGER in at least one dimension than the desired output size:
	if input_image.width > width or input_image.height > height
		return fill_and_crop(input_image, width, height)
	end
end

#resize_to_fit(output_size) ⇒ Vips::Image

Resize the image to fit within the given bounds, preserving aspect ratio.

Returns:

  • (Vips::Image)

    if the image could be resized, otherwise ‘nil`.



67
68
69
70
71
72
73
74
# File 'lib/vips/thumbnail/resizer.rb', line 67

def resize_to_fit(output_size)
	width, height = *output_size
	
	# We can only fit if the input image is BIGGER in at least one dimension than the desired output size:
	if input_image.width > width or input_image.height > height
		return fit(input_image, width, height)
	end
end