Giter VIP home page Giter VIP logo

mini_magick's Introduction

MiniMagick

A ruby wrapper for ImageMagick or GraphicsMagick command line.

Tested on both Ruby 1.9.2 and Ruby 1.8.7.

Why?

I was using RMagick and loving it, but it was eating up huge amounts of memory. A simple script like this…

Magick::read("image.jpg") do |f|
  f.write("manipulated.jpg")
end

…would use over 100 Megs of Ram. On my local machine this wasn’t a problem, but on my hosting server the ruby apps would crash because of their 100 Meg memory limit.

Solution!

Using MiniMagick the ruby processes memory remains small (it spawns ImageMagick’s command line program mogrify which takes up some memory as well, but is much smaller compared to RMagick)

MiniMagick gives you access to all the commandline options ImageMagick has (Found here www.imagemagick.org/script/mogrify.php)

Examples

Want to make a thumbnail from a file…

image = MiniMagick::Image.open("input.jpg")
image.resize "100x100"
image.write  "output.jpg"

Want to make a thumbnail from a blob…

image = MiniMagick::Image.read(blob)
image.resize "100x100"
image.write  "output.jpg"

Got an incoming IOStream?

image = MiniMagick::Image.read(stream)

Want to make a thumbnail of a remote image?

image = MiniMagick::Image.open("http://www.google.com/images/logos/logo.png")
image.resize "5x5"
image.format "gif"
image.write "localcopy.gif"

Need to combine several options?

image = MiniMagick::Image.open("input.jpg")
image.combine_options do |c|
  c.sample "50%"
  c.rotate "-90>"
end
image.write "output.jpg"

Want to composite two images? Super easy! (Aka, put a watermark on!)

image = Image.from_file("original.png")
result = image.composite(Image.open("watermark.png", "jpg") do |c|
  c.gravity "center"
end
result.write "my_output_file.jpg"

Want to manipulate an image at its source (You won’t have to write it out because the transformations are done on that file)

image = MiniMagick::Image.new("input.jpg")
image.resize "100x100"

Want to get some meta-information out?

image = MiniMagick::Image.open("input.jpg")
image[:width]               # will get the width (you can also use :height and :format)
image["EXIF:BitsPerSample"] # It also can get all the EXIF tags
image["%m:%f %wx%h"]        # Or you can use one of the many options of the format command

For more on the format command see www.imagemagick.org/script/command-line-options.php#format

Requirements

You must have ImageMagick or GraphicsMagick installed.

mini_magick's People

Contributors

andersondias avatar dcu avatar for-lesbians avatar halfbyte avatar hamptonmakes avatar kellyredding avatar kepi avatar mindreframer avatar mongrelion avatar probablycorey avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.