forked from asynchrony/image_science
-
Notifications
You must be signed in to change notification settings - Fork 0
Variant of ImageScience that does not require RubyInline
sportngin/image_science
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
= ImageScience * http://seattlerb.rubyforge.org/ImageScience.html * http://rubyforge.org/projects/seattlerb NOTE: This fork is derived from https://github.com/Asynchrony/image_science which is a fork of the original project converted to not use RubyInline. Unfortunately, the Asynchrony fork is not maintained anymore, but the desire to still use image_science without using RubyInline is real. RubyInline requires a compiler at runtime, which greatly increases the surface area of the production application, and is generally much less secure. == DESCRIPTION: ImageScience is a clean and happy Ruby library that generates thumbnails -- and kicks the living crap out of RMagick. Oh, and it doesn't leak memory like a sieve. :) For more information including build steps, see http://seattlerb.rubyforge.org/ == FEATURES/PROBLEMS: * Glorious graphics manipulation magi... errr, SCIENCE! in less than 200 LoC! * Supports square and proportional thumbnails, as well as arbitrary resizes. * Pretty much any graphics format you could want. No really. == SYNOPSYS: ImageScience.with_image(file) do |img| img.cropped_thumbnail(100) do |thumb| thumb.save "#{file}_cropped.png" end img.thumbnail(100) do |thumb| thumb.save "#{file}_thumb.png" end end == REQUIREMENTS: * FreeImage * ImageScience == INSTALL: * Download and install FreeImage. See notes at url above. * sudo gem install -y image_science * see http://seattlerb.rubyforge.org/ImageScience.html for more info. == LICENSE: (The MIT License) Copyright (c) 2006-2009 Ryan Davis, Seattle.rb Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
About
Variant of ImageScience that does not require RubyInline
Resources
Stars
Watchers
Forks
Packages 0
No packages published
Languages
- Ruby 60.1%
- C 39.9%