RMagick is an interface between the Ruby programming language and the ImageMagick® and GraphicsMagick image processing libraries.

learn more… | top users | synonyms

68
votes
12answers
9k views

Why is this RMagick call generating a segmentation fault?

I've been banging my head against the wall for the better part of an hour trying to figure out what's going wrong here, and I'm sure (or rather hoping) it's something fairly obvious that I'm ...
19
votes
3answers
6k views

Mac Rmagick wont install with Xcode 4.2

I just got a new macbook pro and trying to setup my dev environment. I downloaded xcode 4.2 from the app store and installed it, after this i installed homebrew and RVM. ImageMagick, readline, ruby ...
24
votes
8answers
17k views

Can't install RMagick 2.13.1. Can't find MagickWand.h.

When I try do install rmagick I get the following error message: Can't install RMagick 2.13.1. Can't find MagickWand.h. *** extconf.rb failed *** Could not create Makefile due to some reason, ...
6
votes
3answers
8k views

ImageMagick - “CORE_RL_magick_.dll not found” or how to install RMagick on windows with ruby 1.9.2

I'm working on a Rail3 app. After struggling for several hours and finally installing the rmagick 2.13.1 gem without errors on win7x64 / ruby 1.9.2, I've run into another error. Yeah, I've heard that ...
8
votes
2answers
5k views

Error installing Rmagick on Mac OS X

I followed the installation of RMagick for OSX: http://rmagick.rubyforge.org/install-faq.html#osx I have done the Imagemagick installation from John Maddux (solution to install ImageMagick on OSX ...
5
votes
6answers
5k views

RMagick complains it was configured with a different version of ImageMagick

I am getting following error while running local script/server of my Rails project: This installation of RMagick was configured with ImageMagick 6.6.1 but ImageMagick 6.4.5 is in use. ...
33
votes
5answers
10k views

rmagick and OS X Lion

Just upgraded (i.e. not a new install) to Lion from Leopard and my previously well-working rmagick now doesn't work anymore and gives me this error: Your Rack app raised an exception when Pow tried ...
5
votes
4answers
4k views

Ruby on Rails RMagick on Windows 7

Alright, I've been trying to install Rmagick on a Windows 7 x64 machine pretty much all day. I've checked out every single tutorial on Stack Overflow and other sites, but I keep getting an "Invalid ...
41
votes
7answers
20k views

ImageMagick / RMagick - Can't install RMagick 2.13.1. Can't find Magick-config

I used a script to install ImageMagick http://github.com/masterkain/ImageMagick-sl After a while, I got ImageMagick installed. Then I ran sudo gem install rmagick and got Building native ...
7
votes
4answers
5k views

How do I make beautiful screenshots of web pages using ruby and a unix server?

I'm trying to programatically create beautiful thumbnail images of a large number of web pages that are hosted on my own ruby/rails-based website. I want to be able to code a stand-alone bit of ruby ...
15
votes
5answers
6k views

Rails and OS X: How to install rmagick?

I am already completely desperate - I spent whole day with trying to install rmagick gem to Mac OS X Lion, but literally it's a tragedy. I saw many similar threads on Google, but nothing has helped ...
9
votes
4answers
2k views

Is it possible to get the average image color with RMagick?

I need to know the average color from an image when I upload it to my Ruby on Rails application. Is it possible to get the average color value in HEX or in RGB to use this color later in the view ...
5
votes
5answers
3k views

Properly converting a CMYK image to RGB with RMagick

I have been using the below to do a color conversion if @image.colorspace == Magick::CMYKColorspace # @image.colorspace #=> CMYKColorspace=12 @image.colorspace = ...
14
votes
1answer
1k views

rmagick leads to server shutdown

everyone! I was following Railscasts episode #253, using CarrierWave to do image upload. Everything was fine to display the original image, even though the image looked quite big in the browser. I ...
9
votes
3answers
2k views

How to deal with memory leaks in RMagick in Ruby?

Im developing web-application with Merb and im looking for some safe and stable image processing library. I used to work with Imagick in php, then moved to ruby and start using RMagick. But there is a ...
7
votes
8answers
7k views

Issue with installing ImageMagick and rmagick on Mountain Lion

I am facing issues with installing rmagick in mountain lion. I have installed Xcode 4.4 and developer tools. Still facing this issue. Installing rmagick (2.13.1) with native extensions ...
3
votes
4answers
621 views

Understanding ImageMagick's convert and translating to Ruby RMagick

I'm failing at translating the following PHP/ImageMagick code into Ruby RMagick (to make it more manageable for future users and to understand what it's really doing): $output = array(); $returnValue ...
4
votes
0answers
735 views

RMagick: Convert CMYK EPS to RGB PNG maintaining transparent background

I've spent a long time trying to go from a CMYK EPS to a RGB PNG using RMagick and Rails. Hopefully this will be of use to someone: def convert_image_from_cmyk_to_rgb( image ) #puts image.alpha? ...
2
votes
1answer
615 views

Pixel RGB with ImageMagick and Rails

I'm currently uploading an image with PaperClip and ImageMagick. I would like to get the image's average color so I'm doing this (with a before_create hook): def get_average_color img ...
0
votes
1answer
333 views

Can't install RMagick with rbenv

I'm using rbenv on my Ubuntu 10.04 server and I already installed ImageMagick, but I can't get RMagick to install successfully. I get the following error message Can't install RMagick 2.13.1. Can't ...
17
votes
2answers
3k views

Resize existing images to new style in paperclip & RMagick

I've been using paperclip to upload and auto-resize photos in my Rails app, and I love it. Only problem is about every other month my crazy manager decides he wants a new size to display the photos ...
9
votes
5answers
7k views

RMagick + Rails + Heroku?

I'm trying to figure out how to get rmagick on my app, and then make it work on Heroku?
4
votes
3answers
4k views

Carrierwave crop specific version

I am working on the ability to crop images using carrierwave and Jcrop. Its a combination of Railscasts episode 182 and 253. I have cropping working but it crops the original. Is there anyway to ...
66
votes
9answers
34k views

rmagick gem install “Can't find Magick-config”

I get the error shown below when attempting to install the rmagick gem. I am on Snowleopard 10.6 using RVM, Ruby 1.9.2-head and Rails 3.05. Responses to similar questions recommended installing ...
11
votes
7answers
14k views

Problem installing RMagick rubygem on Centos 5

I'm having problems installing the RMagick rubygem on Centos 5. I've followed the steps detailed in http://rmagick.rubyforge.org/install2-linux.html but when I try: sudo gem install rmagick the ...
24
votes
7answers
11k views

Installing rmagick on Ubuntu

I'm trying to get RMagick setup on Ubuntu 10.04. Looked here but had no joy. I even compiled and installed ImageMagick from source, but the instructions here still didn't help me when I try to install ...
6
votes
2answers
3k views

rails convert html to image

I'm looking for a way to convert html tags to a image on the fly... That means, that I want to be able to make a image_tag with a path to a method which returns the image created form html. I was ...
4
votes
1answer
1k views

Rails 3.1 assets not recognizing new images uploaded by rmagick until server restart

I have my Rails 3.1.0 application running with passenger in production environment and I have a section where the application allows the user to change his profile picture so I upload the image using ...
6
votes
2answers
989 views

RMagick remove white background from image and make it transparent

I need to remove the white background from this image and make the background transparent. So it's just a black tick on the transparent background exported as a png. e.g. Turn Into Any ideas?
5
votes
4answers
5k views

Can't install Rmagick and Imagemagick on Windows 7

when I run gem install rmagick-2.13.1.gem from the directory in which rmagick-2.13.1.gem is I get an Error saying that it failed to build gem native extension, below which it says ...
4
votes
6answers
5k views

Bundle can't install RMagick gem on Mac OSX 10.7

I've installed ImageMagick with ImageMagick installer script https://github.com/maddox/magick-installer. I am on OSX Lion 10.7, using RVM, Ruby 1.9.3p125. The problem seems to be with MagickWand.h ...
3
votes
1answer
3k views

RVM + Ruby 1.9.2 + Rmagick + Lion = System Works, RVM Doesn't

I've installed Ruby 1.9.2 through RVM on a fresh install of OS X Lion. I have installed ghostscript and imagemagick through homebrew, and when running gem install rmagick using RVM, it fails. When ...
3
votes
5answers
556 views

Ruby graphic libraries

What's the difference between RMagic, ImageMagick, GD, etc. and which one should I use? I was looking for a thumbnail generation script and noticed that every script I found uses a different library ...
2
votes
2answers
1k views

Create paperclip attachment from rmagick image

I have a problem to find a way to save an image created with RMagick in a paperclip attachment. imageList = Magick::ImageList.new imageList.new("images/apple.gif", "images/overlay.png") ... picture = ...
3
votes
3answers
540 views

Getting first image in gif using carrierwave

Im using carrier wave to upload gifs which works just fine, the problem comes when i try to generate the thumb version and converting the gif into a jpeg with only the first image in the gif as the ...
3
votes
1answer
3k views

Problems installing RMagick with Paperclip in Rails 3

I'm trying to use paperclip in rails and when I'm doing the "bundle install" I'm getting the following error: Can't install RMagick 2.13.1. Can't find Magick-config in ...
1
vote
3answers
525 views

Difference between 'require 'rmagick' and 'require RMagick' (Mac vs Debian)

I'm using a Mac pro Lion for development with ImageMagick Q16, RVM and ruby 1.8.7 I can use the following in IRB: Take note on the different caps in the word 'rmagick' require 'rubygems' => true ...
1
vote
1answer
565 views

Ruby 1.9 compatible plotting / graphic library?

I feel like I have a simple desire that no one can satisfy: I want to be able to graph a set of points, and I am using Ruby 1.9.2. I would like to use Gruff or Scruffy, since these seem to be the ...
0
votes
3answers
1k views

RMagick install error

all! I have a problem when installing rmagick gem on CentOS 5.5 server. When I issued command: gem install rmagick I got: checking for Ruby version >= 1.8.5... yes checking for gcc... yes ...
0
votes
1answer
377 views

rmagick custom fonts as pictures

I'm using this script https://github.com/Joern/CustomFont/blob/master/custom_font.rb to generate pictures with text in a custom font. It works fine. Now I bought a very special font which works fine ...
0
votes
2answers
1k views

How to use ImageMagick to batch desaturate images?

I have an image that is black text with some gray and pale yellowish background. I basically want to keep the text as black as possible, and make the gray and yellow comparatively lighter...at the ...
4
votes
1answer
2k views

CarrierWave and correct file extension depending on its contents

How can I make CarrierWave add correct extension to filename depending on its contents? For example, if I upload file "logo" (PNG file without extension) CarrierWave should save it as "logo.png". And ...
3
votes
1answer
478 views

Rails 3 - RMagick doesn't find libfreetype.6.dylib using Paperclip

I'm trying to use Paperclip to upload some image. It's work fine but if I want add some style with : :styles => { :small => "100x100" } It does not work anymore, I have this error message : ...
2
votes
3answers
480 views

How do you generate retina (iPad) friendly (progressive or interlaced) jpeg images with CarrierWave?

There are numerous reports that Mobile Safari downsamples very large JPEG images, making it difficult to put out retina-friendly resolutions for the new iPad. The solution seems to be encoding JPEGs ...
2
votes
4answers
1k views

no such file to load — RMagick2.so

I am really struggling to understand the meaning of the error below. I develop on OS X Lion, and I have RMagick installed there, and my code works flawlessly. Yet on the production RedHat machine, ...
2
votes
1answer
296 views

why is the behavior of extent (imagemagick) not uniform across my machines?

I'm using extent in rmagick/imagemagick to center images on a canvas of certain size. On some of my machines, it centers them - on others it does the opposite. If I fix code to work on one machine, ...
2
votes
2answers
3k views

Rmagic isn't work on Rails3

My Rmagic isn't work ruby -v ruby 1.8.7 (2010-01-10 patchlevel 249) [i386-mingw32] rails -v Rails 3.0.0.beta4 irb require rubygems true require rmagick true but , I put ...
1
vote
1answer
238 views

Gem install error with RMagick

In the past I used RMagick and also had Imagemagick, and recently I bundle installed a newer version of RMagick. When restarting my rails server I got errors. So I decided to uninstall first ...
1
vote
1answer
608 views

ImageMagick multiline text and background image

I'm learning to use ImageMagick, but I'm having trouble when I try to generate an image like the example below: And for that, I'm using the following code: convert original.jpg -size 460x ...
0
votes
0answers
32 views

How do I process attachements programatically, from the model, without using forms?

I have a LineItem class that has an images column. It belongs to an Order class. When a line_item is saved, the images column is a list of comma delimited image urls. I want is to create a collage ...

1 2