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

learn more… | top users | synonyms

4
votes
0answers
710 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
0answers
91 views

How can I get rmagic 2.12.2 installed on os x 10.8.3

I am trying to install the locomotive gem into my rails app. It has a dependency to use rmagick gem 2.12.2 I successfully installed the latest version of rmagic 2.13.2 but apparently the older ...
2
votes
0answers
253 views

How to install Rmagic and imageMagic for Ruby on Rails in windows 7 32 bit

i need to install Rmagic for my app so i have searched allmost all related my question on web and stakeoverflow too but non of these worked for me. i have followed this too but not worked ...
2
votes
0answers
130 views

RMagick raises “no decode delegate” exception

When calling ImageList.new('example.jpg') RMagick raises the following exception: %RUBY_DIR%/lib/ruby/site_ruby/1.9.1/RMagick.rb:1635:in `read': no decode delegate for this image format ...
2
votes
0answers
205 views

RMagick installation fails to build native extension

On Mountain Lion I am trying to install RMagick. I found an issue on GitHub and the solution should be the command gem pristine rmagick. But when I run it, I get: ERROR: While executing gem ... ...
2
votes
0answers
174 views

Loss of PNG image quality following CarrierWave::RMagick resize_to_fit

I'm using CarrierWave::RMagick to create thumbnail versions of images for a Rails app, and I've noticed loss of quality when the images are downsized. This is understandable to a certain extent, as we ...
2
votes
0answers
188 views

Cropping image with RMagick removes anti-aliasing

I'm using RMagick to crop a large PNG file into tiles. The original PNG file is line art with a transparent background; the line edges are alpha blended to reduce jaggies. The tiles (also PNG files) ...
2
votes
0answers
918 views

RMagick convert problem

In linux i'm doing the below to convert a multipage PDF into images resized and with a high resolution: convert -verbose -colorspace RGB -resize 800 -interlace none -density 300 -quality 80 test.pdf ...
1
vote
0answers
24 views

Magick++ crop throws error on second image

I am currently trying to crop a large matrix of images using Magick++. I am looping through all of the images and cutting each one into a 3x3 grid of tiles to get their average RGB values. Currently ...
1
vote
0answers
79 views

Rails 4 Carrierwave + RMagick, converting PDF to PNG changes file encoding but not extension?

I can upload a PDF and convert it to a PNG format and it renders properly in the browser via the <%= image_tag "path/to/image" %> helper. However, the actual file extension is NOT being changed ...
1
vote
0answers
12 views

RMagick crop! “bignum too big to convert into `long'” error

I'm getting an error from RMagick 2.13.1 on rare occasions and the error message doesn't make sense to me. Can anyone shed any insight? pagination = Magick::ImageList.new ...
1
vote
0answers
90 views

carrierwave: reject .gif renamed to .jpg

I would like to allow users to upload .jpg files but only if they are actually .jpg (e.g., cat.gif renamed to cat.jpg would not work. Currently in my Carrierwave ImageUploader.rb I have: include ...
1
vote
0answers
97 views

rmagick 2.13.1 - not compatible with imagemagic 6.8.1-9

I am using rails 3.2.9 I have now installed ImageMagick 6.8.1-9 and rmagick 2.13.1 gem. Once I start the server it returns this error: ...
1
vote
0answers
74 views

RMagick > ImageMagick // identify not working in rails app

Something I don't really get… When I do a $ convert file.jpg file2.jpg everything works fine. It used to work perfectly too with paperclip from within a rails app. But for a newly deployed rails ...
1
vote
0answers
24 views

rmagick does not cause data loss when saving as jpeg

I want to write a script with rmagick, that re-saves an image x-times to demonstrate the data loss caused by jpeg. Unfortunately there is only data loss while saving the first time. All the other ...
1
vote
0answers
264 views

Unable to get ImageMagick version *** extconf.rb failed ***

i've googled this error a couple of times and got instructions to install rMagick win-32 from their website. However the win32 versions looks depecrated and is made for Ruby 1.8.6 as for i have 1.9.3. ...
1
vote
0answers
66 views

Recomended tools and techniques to dynamically generate images and game characters (where's wally)

I'm working on a project that involves generating images (something like where's wally). The image would be filled with random game characters, and the characters would also be randomly generated, ...
1
vote
0answers
257 views

Converting PDF to PNG with transparent background

We have a Ruby on Rails application that needs to convert a PDF into a PNG with a transparent background. We're using rmagick 2.13.1. On our development machines the following code works exactly how ...
1
vote
0answers
144 views

RMagick ignores the opacity when creating a new image with RVG

I'm trying to generate an image with a transparent background, but not even creating an image that is just a transparent png works. I tried this: require "rvg/rvg" rvg = Magick::RVG.new(100, 100) ...
1
vote
0answers
202 views

Errors while trying to use RMagik on Heroku

I'm newer to working in ruby, rails, heroku and even newer to RMagick. I've attempted several solutions to using RMagick on Heroku found on stack overflow with no results. Here is an interesting ...
1
vote
0answers
276 views

right_aws and RMagick/mini_magick: cant create Image object out of image grabbed from s3

I am trying to grab an image from amazon s3, do some stuff with Rmagick, and upload the image back to s3. I am attempting to do this with right_aws and RMagick/mini_magick. So far i havent had any ...
1
vote
0answers
207 views

rmagick replacement with minimagick

at the beginning of the project i included RMagick gem and now app use it for getting HSL tone of image (for mono-color indexing/search). it works ok but in some reason i need to switch to minimagick ...
1
vote
0answers
207 views

Rmagick crop weird behaviour

This is using Rmagick v2.13.1 using standard install for imagemagick on macosx. sudo port install tiff -macosx imagemagick +q8 +gs +wmf. For some reason when using crop from rmagick inside ...
1
vote
0answers
239 views

rmagick cannot change font-family

I tried this example here: http://www.imagemagick.org/RMagick/doc/usage.html#annotation But I can only generate this image. Which looks different from the image generated on that page: And even ...
1
vote
0answers
280 views

RMagick / Imagemagick string conversion UTF-8

I'm uploading pictures in different sizes with Paperclip. This all works fine. Now I'm adding a text layer with RMagick (annotate) to each photo for legal copyright info. This works fine too. The ...
1
vote
0answers
244 views

Rails 3 and rmagick

I have problem with rmagick in Rails 3. Everything seems to be installed, but I get the following error: Failed to manipulate with rmagick, maybe it is not an image? Original Error: unable to ...
1
vote
0answers
844 views

Rails 3.0 rmagick Can't install RMagick 2.13.1. Can't find MagickWand.h

I'm trying to install the rmagick gem for a rails 3.0 app and I run into the following error: RMagick 2.13.1. Can't find MagickWand.h. I've added the following code to my gem file: gem "rmagick", ...
1
vote
0answers
177 views

RMagick - Which rmagick method should i use to optimize Big Images to reduce image load time?

I Have a full size slider with big images for example: 1885x1440 these are photos and i need to optimize them with RMagick but keep the quality and image size (1885x1440) I think it should be one of ...
1
vote
0answers
224 views

attachment_fu rmagick on phusion passenger

I am getting so much pain with setting up rmagick on Passenger . I’m developing a rails web application that has image processing feature using imagemagick. the image processing feature is working ...
1
vote
0answers
1k views

How to find the path to ImageMagick config files

I'm attempting to load a ICM color profile file that is stored with the main ImageMagick config files (colors.xml, etc.) using RMagick. I want to make sure that I always provide the correct path to ...
0
votes
0answers
9 views

coders/jpeg.c:1254:33: warning: comparison between 'boolean' and 'enum <anonymous>'

While installing Imagemagick I get this warning. But Main issue is due to this warning I am not able to use my rmagick for captcha as /usr/local/bin/convert logo: logo.jpeg is giving error: ...
0
votes
0answers
14 views

Rails, Paperclip: How do I copy an attachment within a model and get it there with the scaled thumbnails?

I'm building an editor/viewer for a user's work samples. I have a work sample model called work_sample_item that contains a paperclip attachment "work" and another called "representation". The idea ...
0
votes
0answers
12 views

RMagick Returning image with filesize 0

When I call the image.resize_to_fit I get no errors but my file is empty of any data. How do I make the resize happen correctly? code in my upload controller: bucketName = "BucketName" myPhoto ...
0
votes
0answers
19 views

convert: Wrong JPEG library version: library is 80, caller expects 90 `image.jpg'

I am using Ubuntu 13.04. I am installing imagemagick. and It is installed properly via source.I find all required delegates. convert -list configure | grep DELEGATES I get : DELEGATES ...
0
votes
0answers
29 views

Progressive JPEG using RMagick

I am trying to convert a JPEG image into progressive JPEG image. I am using following code in console. require 'rmagick' i = Magick::Image.read("test.jpg")[0] puts i.interlace # => NoInterlace ...
0
votes
0answers
9 views

rmagic rotation and background color is black

img1 = Magick::Image.read("public/123.png").first img1.background_color = "none" img1.rotate!(30) img1.write('test.png') background color is black, how transparent Anyone,help?
0
votes
0answers
13 views

Do all browser support progressive image display?

Is there any list of standard browsers where, I can come to know which all browsers support progressive image display.
0
votes
0answers
16 views

ImageMagick: Mapping colours to a parent colour

I'm currently running a ruby script which figures out roughly where a users body is in a photo and then takes a guess at what colour they are wearing. This script loops through their facebook photos ...
0
votes
0answers
38 views

Low quality when converting PDF to JPG

I'm attempting to use Imagemagic(RMAgick) to convert PDF-document into image. Original PDF is created from an image too(not native vector PDF). image = Magick::Image::from_blob(original_pdf) { ...
0
votes
0answers
60 views

RMagick 2.13 install on Windows8 fails can't find wand/MagickWand.h

After two days googling and trying many solutions (provided here and aroundd), I still can't install rmagick gem... I'm using Ruby 1.9.3, Rails 3.2.13 on Windows8 (all installed via RailsInstaller). I ...
0
votes
0answers
40 views

Rails: displaying rmagick image in view

I'm trying to display an image in my index.html.erb, I have: <%= @image %> and in my controller, I have def index image_path = Rails.root.to_s + "/portrait.jpeg" image = ...
0
votes
0answers
22 views

How to flatten Rmagick images and center them?

With rmagick, there are several ways to combine several images. It seems "flatten_images" is the best way to create a list of images, but I fail to see how to scale images properly. list = ...
0
votes
0answers
55 views

rmagick auto wrap text undefined method 'write'

RMagick is supposed to auto wrap text on the image and add breaklines to that text. Here is my code for doing so: def word_wrap(text, columns = 80) text.split("\n").collect do |line| line.length ...
0
votes
0answers
23 views

rmagick auto pointsize and wrap text

how can I make rmagick wrap the annotation text on the picture and then auto scale the font size and add line breaks? It's for something like a meme generator. thanks in advance
0
votes
0answers
55 views

rmagick image annotations

I am copying a picture from a Pictures model to an Answers model and annotating the picture. I am using RMagick and Carrierwave. Obviously, I want the annotations to be the text the user enters in the ...
0
votes
0answers
70 views

Large file size after carrierwave's resize_and_pad of PNG

My application uses carrierwave (0.8.0) + rmagick (2.13.2) to resize uploaded image to 512x512. Here's the code snippet in my uploader: process :resize_and_pad => [512, 512] process :convert => ...
0
votes
0answers
91 views

rmagick (carrierwave) text annotations to duplicated picture to another model

Here is what I have: a user can upload a picture (via carrierwave) without an annotation. The image duplicates if a user creates an "answer" (like it should), but when it comes to annotations I get an ...
0
votes
0answers
107 views

rmagick and carrierwave adding text to image from a different model and table

so here is what I have: user can upload image via carrierwave, image shows up in library, etc. - it all works. Every 24 hours the most liked image's boolean value :fame gets set to true - that also ...
0
votes
0answers
26 views

“blur” existing single image to mosaic with rmagick?

Trying to mosaic an image with rmagick. How would one "mosaic blur" an existing image making the picture that it represents mosaic'ed ? Like:
0
votes
0answers
60 views

libmysqlclient16 ubuntu 12.1

I have been running into multiple issues on installs ( RMagick, Sphinx etc..) that are all looking for this dependency file but I cannot find anyway to get this installed. sudo apt-get install ...

1 2 3