Tagged Questions
RMagick is an interface between the Ruby programming language and the ImageMagick® and GraphicsMagick image processing libraries.
52
votes
12answers
5k 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 ...
20
votes
3answers
4k 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 ...
10
votes
2answers
1k views
RMagick warning while running server
I am using gem 1.3.7, rails 2.3.5 and ruby 1.8.7 (2008-08-11 patchlevel 72). While starting server i get below warnings.
Loading development environment (Rails 2.3.5)
...
10
votes
4answers
5k views
Installing RMagick on Mac OS X with MacPorts
With the MacPorts version of ImageMagick 6.4.4 installed, I'm getting an error installing the RMagick gem.
/opt/local/bin/ruby extconf.rb update rmagick
checking for Ruby version >= 1.8.2... yes
...
7
votes
1answer
440 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 ...
7
votes
3answers
5k 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 ...
7
votes
3answers
2k 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
694 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 ...
6
votes
3answers
3k 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 ...
6
votes
1answer
888 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 ...
5
votes
2answers
388 views
Unable to install rmagick, ruby 1.9, rails 3, windows
I've been googling for a while but couldn't find anything that works.
Basically, when I put gem 'rmagick' in my gemfile and run bundle install, I get the following error message:
Installing ...
5
votes
3answers
2k 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 ...
5
votes
2answers
503 views
Is it posible to get the average image color with RMagick? - Ruby on Rails
I need to know the average color from an image while i upload this to my Ruby on Rails Application is it posible to get the average color value in HEX or in RGB to use this color later on the view ...
5
votes
5answers
4k views
RMagick + Rails + Heroku?
I'm trying to figure out how to get rmagick on my app, and then make it work on Heroku?
5
votes
1answer
1k views
How to serve generated images with sinatra in ruby
I wrote a simple Sinatra app that generate an image using rmagick from some user inputs. The image is saved in the ./public directory with a unique file name. The unique file name is used in the HTML ...
5
votes
7answers
6k 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 ...
5
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 ...
4
votes
5answers
1k views
rmagick under windows
I just wanted to install rmagick under windows.
So I installed ImageMagick with C/C++ header, but that seems no more to be necessary.
Then I installed the Ruby Build Tools
ruby dk.rb init
ruby ...
4
votes
5answers
1k 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 = ...
3
votes
1answer
313 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 ...
3
votes
1answer
205 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?
3
votes
0answers
254 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?
...
3
votes
1answer
114 views
Installing ruby RMagick gem on Ubuntu server without installing X
I would like to use the RMagick gem on an Ubuntu 10.04 server. This is easy to do system-wide using the Ubuntu package librmagick-ruby1.8, but I would like to install the gem in a private location ...
3
votes
0answers
191 views
How do I get RMagick to wrap images around a cylinder?
I'm trying to wrap an image around a cylinder in RMagick (ImageMagick) and am having a tough time. There are several types of distortions (Barrel, Arc, Affine, etc.) that seem to be a good start but ...
3
votes
1answer
233 views
How to save 8-bit PNGs with ChunkyPNG or RMagick
I've been trying to save 8-bit PNGs (PNG8) using RMagick (http://rmagick.rubyforge.org/) and ChunkyPNG (https://github.com/wvanbergen/chunky_png) but have been unable to do so.
However the only time ...
3
votes
1answer
1k 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 ...
3
votes
1answer
78 views
RMagick: get glyph metrics
I can't find out how to get all metrics of a given glyph with RMagick.
I know there is a get_type_metrics method which gives the baseline, height, ascent, descent, etc, but I would also like to get ...
3
votes
3answers
921 views
Problem requiring the RMagick gem with Ruby
I installed RMagick on a Windows system with no apparent problems, but I'm having problems actually using it. In particular:
C:\Users\dancrumb> ruby -rubygems -rRMagick -e "puts ...
3
votes
1answer
1k 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 ...
3
votes
4answers
401 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 ...
3
votes
5answers
300 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 ...
3
votes
1answer
484 views
Combine Thumbnails to One Large Image with RMagick
What's the shortest way to combine say 20 256x256 thumbnails into a single large image of 4 rows by 5 columns using RMagick?
3
votes
3answers
169 views
how to make a spiral galaxy image based on data points?
I'm trying to plot points from a very large array into an image using Ruby. Such that the array items are represented by a point or dot of the appropriate colour, and the dots together form the ...
3
votes
3answers
1k views
PIL vs RMagick/ruby-gd
For my next project I plan to create images with text and graphics. I'm comfortable with ruby, but interested in learning python. I figured this may be a good time because PIL looks like a great ...
2
votes
2answers
40 views
How to create an Image in rails ? ( from as imagecreate () in php)
I need to create an image from the imagemagick/rmagick library, How should I do that?
as in php it was done like below with GD library.
<?php
header ("Content-type: image/png");
...
2
votes
1answer
88 views
Combine multiple image “strips” into one image with ChunkyPNG
How would I combine multiple (in this case 10) image "strips" (all of equal width) into one image with ChunkyPNG?
Right now, I have all of these image strips stored in an array, and at some point I ...
2
votes
2answers
74 views
Rmagick, GraphicsMagick seems to be super slow on server (why OK on local)
I am looking for a very quick way to render dynamic images from small tiles placed on some background (imagine dynamically rendering a chess game and sending images after each player makes a move).
So ...
2
votes
1answer
252 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 ...
2
votes
2answers
361 views
Rails: Carrierwave recreate versions does not change old images
My Rails app uses carrierwave to manage image uploads. I have a watermark version of the images on my site. Previously I was overlaying an image on them, like so:
def watermark
manipulate! do ...
2
votes
2answers
103 views
rmagick not building on windows 7 undefined reference errors
Hey I know there are a lot of rmagick threads up but I havn't been able to find anything on the current errors I am getting. Everyone gets to the point I am at and it just seems to work for them.
So ...
2
votes
2answers
1k views
Upgrade to Lion, failed to build gem native extensions
Not sure if my problem is related to this thread (http://stackoverflow.com/questions/6589066/rmagick-and-os-x-lion), but I just upgraded to Lion; more specifically I purchased an new machine and ...
2
votes
1answer
447 views
rmagick doesn't work after update from snow leopard to lion
I upgraded (not a new install) from snow leopard to lion. Now rmagick doesn't work. I updated Xcode, tried to reinstall the gem (as mentioned here: rmagick and OS X Lion), removed the 1.9.2 ruby from ...
2
votes
2answers
601 views
Can't install RMagick 2.13.1. Can't find Magick-config
$ gem install rmagick
Building native extensions. This could take a while...
ERROR: Error installing rmagick:
ERROR: Failed to build gem native extension.
...
2
votes
1answer
106 views
RMagick (ImageMagick) hangs when run in a forked process
On an instance of Rails 3.0.0 with Ruby 1.8.7, I'm trying to push some image processing tasks using RMagick (2.13.0) into a separate process using fork(). However, the child process in which the image ...
2
votes
3answers
571 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 ...
2
votes
1answer
191 views
creating a ruby File object from Magick::Image
I'm trying to post watermarked images to a url using rmagick and rest-client. When I generate the composite image, I save it (.write), read it back in with File.new, and then post that File object. ...
2
votes
2answers
209 views
How to create a preview of specific web page?
I have to create a preview of some web-pages on web-site as image like google search preview. How can i create this on Rails using rmagick or it is impossible?
Thank's.
2
votes
1answer
141 views
Why does cropping behave like that?
I've got an image with dimensions 126x75:
(rdb:1) p image.width
126
(rdb:1) p image.height
57
Now I want to crop it down to 50x50, beginning at the north west (top left corner). So I tried that ...
2
votes
3answers
250 views
RMagick-like image processing library for Java
Is there any Java image processing library that is as easy to use as and provides the set of functionalities provided by RMagick? (I have seen JMagick and unfortunately that is not the kind of library ...
2
votes
2answers
495 views
Image histogram with mini_magick or image_science?
Is it possible to fetch the histogram of an image with mini_magick or image_science?
I am afraid mini_magicks usage of mogrify does not allow such information retrieval. image_science is hardly ...