Sha256: 24eaadd129445b3744bf5e0244020666ea62c8182fafd1b8bffe376e58ba2351
Contents?: true
Size: 1.46 KB
Versions: 1
Compression:
Stored size: 1.46 KB
Contents
require 'colorized_string' require 'iiif_s3' namespace :wax do task :iiif => :config do FileUtils::mkdir_p 'tiles' imagedata = [] id_counter = 0 if $argv.empty? puts "You must specify one or more collections after 'bundle exec rake wax:iiif' to generate.".magenta exit 1 else $argv.each do |a| dirpath = './_iiif/' + a unless Dir.exist?(dirpath) puts ("Source path '" + dirpath + "' does not exist. Exiting.").magenta exit 1 else id_counter+=1 imagefiles = Dir[dirpath + "/*"].sort! counter = 1 imagefiles.each do |imagefile| begin basename = File.basename(imagefile, ".*") opts = {} opts[:id] = basename opts[:is_document] = false opts[:path] = imagefile opts[:label] = $config["title"] + " - " + a + " - " + basename i = IiifS3::ImageRecord.new(opts) counter = counter + 1 imagedata.push(i) rescue puts ("Failed to convert image " + imagefile + ".").magenta exit 1 end end end end builder = IiifS3::Builder.new({ :base_url => $config["baseurl"] + "/tiles", :output_dir => "./tiles", :tile_scale_factors => [1,2], :verbose => true }) builder.load(imagedata) builder.process_data() end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wax_tasks-0.0.1 | lib/tasks/iiif.rake |