/img_processor_part.rb Secret
Last active
December 7, 2015 22:28
Star
You must be signed in to star a gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
payload = IronWorker.payload | |
file = download_image(payload) | |
payload['operations'].each do |op| | |
puts "\nPerforming #{op['op']} with #{op.inspect}" | |
output_filename = op['destination'] | |
image = MiniMagick::Image.open(file) | |
image = self.send(op['op'], image, {}.merge(op)) | |
image.format op['format'] if op['format'] | |
write_image(image, output_filename) | |
upload_file payload, output_filename | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment