You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/vendor/bundle/ruby/4.0.0/gems/ruby-vips-2.3.0/example/example4.rb

19 lines
366 B

#!/usr/bin/ruby
require "vips"
# this makes vips keep a list of all active objects
Vips.leak_set true
# disable the operation cache
# Vips::cache_set_max 0
# turn on debug logging
# Vips.set_debug true
ARGV.each do |filename|
im = Vips::Image.new_from_file filename
profile = im.get_value "icc-profile-data"
puts "profile has #{profile.length} bytes"
end