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

learn more… | top users | synonyms

0
votes
0answers
23 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
vote
5answers
40 views

How to detect extension of image without extension?

My situation: I have application, based on RubyOnRails. I use Carrierwave for images uploading. I have many files saved without extensions mistakenly. So, all of these have content_type with empty ...
0
votes
1answer
13 views

Is there a way to get coordinates of cropping via Rmagick after cropping?

I have a RubyOnRails application. I use carrierwave for images uploading and jcrop for cropping. I have two images: original and cropped image. But I have no saved coordinates of this cropping ...
0
votes
1answer
16 views

Create a darken version of an image

I need to create a darken version of an image. What is the correct way to accomplish this? I have tried with the 'modulate' method: manipulate! do |img| img.modulate(0.85) end but the result is ...
0
votes
0answers
11 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
20 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
16 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
29 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 ...
-1
votes
0answers
26 views

Failed to install Rmagick gem on 64-bit win 7 OS [closed]

I'm trying to build up a community with social_stream. Per the readme document of social_stream, I should add gem 'social_stream', '>= 1.0.0' into gemfile of my rails application and then run bundle ...
0
votes
1answer
31 views

Rails - “include CarrierWave::RMagick” results in: undefined method `model_name' for NilClass:Class

I'm building a simple app with standard User model that has_one Profile model. I would like the profiles table to have a column for an image attribute. Therefore, I followed RailsCast #253 titled ...
0
votes
0answers
32 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
10 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?
1
vote
0answers
26 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 ...
0
votes
1answer
70 views

Ubuntu - cannot install RMagick [duplicate]

How to install the RMagick gem to Ubuntu? I found a few threads here on SO, some of there directly pointed out to the installation on Ubuntu systems, but none of them is working for me. Here is the ...
-1
votes
0answers
113 views

Amazon EC2 - Can't install RMagick 2.13.2. Can't find MagickWand.h [closed]

When I run bundle on Amazon EC2 server, I get this error: Can't install RMagick 2.13.2. Can't find MagickWand.h. An error occurred while installing rmagick (2.13.2), and Bundler cannot continue. Make ...
0
votes
1answer
16 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
2answers
28 views

RMagick - how do I find out the pixel dimension of an image

This may be a stupid question, but how does one find the image width and height in pixels? image.x_resolution and image.y_resolution both return 0 for some reason.
1
vote
0answers
98 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 ...
0
votes
0answers
39 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) { ...
-1
votes
0answers
26 views

Carrierwave Rmagick source changing brightness after anotate

Hi got come problems using carrierwave and rmagick, after i do annotate source change brightness or something else. Here is code: def caption_action(source, x, y, width, height, padding, size, color, ...
1
vote
0answers
15 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 ...
0
votes
1answer
49 views

RMagick unable to open image

Today i try to write a code for generate animated gif from folder but i get this error: .../.gem/ruby/2.0.0/gems/rmagick-2.13.2/lib/RMagick.rb:1635:in `read': unable to open image ...
2
votes
1answer
43 views

MiniMagick - cannot load such file

I'm trying to use MiniMagick to resize images and I did the following in my controller file: require 'rubygems' require 'mini_magick' and img = MiniMagick::Image.open(file) But when I invoke the ...
0
votes
1answer
21 views

RMagick posterize and other does not work

I guy's i have write this code: require 'RMagick' include Magick img = Image.read("small_img.gif").first img.posterize img.display exit the result of image don't change i've tested blur_image, ...
0
votes
1answer
28 views

Video Thumbnail with Paperclip+ImageMagick+Heroku

I am trying to take snapshots of uploaded videos. The following Paperclip processor works fine in my local environment, but fails in Heroku. module Paperclip class VideoThumbnail < Processor ...
2
votes
1answer
45 views

Line breaks are not shown in heredoc

I have a heredoc string html =<<EOF <span> Hello hello 123 </span> <a>Link1</a> <a>Link2Link2</a> EOF If I say puts html, it will ...
0
votes
1answer
33 views

Rails application using Rmagick, function from_blob fails with NoDecodeDelegateForThisImageFormat after ImageMagick update

I have an application running on rails 1.9.3 and recently my server was updated and installed a new version of ImageMagick(v 6.8.0-7). After this my application started throwing an exception when ...
0
votes
0answers
68 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
1answer
111 views

Installing Rmagick issues in Mac OS X lion

Problem: Fetching: rmagick-2.13.2.gem (100%) Building native extensions. This could take a while... ERROR: Error installing rmagick: ERROR: Failed to build gem native extension. ...
0
votes
1answer
78 views

ImageMagick (RMagick) / Convert an image to 1bit/px bitmap

I'm looking for the command and options to convert images (png, jpeg, whatever…) to 1bit/px bitmap image (similar to what happen when in photoshop when you convert it to bitmap). See example below ...
0
votes
1answer
33 views

RMagick torn edges

I'm trying to create a torn edge effect in RMagick. Is there a filter similar to photoshop's crystallize? Also, I found this ImageMagick code that does it here ...
0
votes
1answer
27 views

RuntimeError RMagick

What i need to do that fix this error This installation of RMagick was configured with ImageMagick 6.6.9 but ImageMagick 6.7.5-10 is in use. app/uploaders/avatar_uploader.rb:2:in include' ...
0
votes
1answer
32 views

Convert animated gif to one image with Rmagic (image magic)

I know there is a way to convert several images to gif animation with Rmagic, however I want to do the opposite. When uploading an animated gif, I want it to be non-animated, how can I do that ? ...
0
votes
0answers
42 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
23 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
56 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 ...
2
votes
0answers
95 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 ...
1
vote
1answer
60 views

Ruby Rmagick: Crop/“Trim” excessive (white) space of image automatically

I'm taking a "Screenshot" of HTML documents with IMGkit (https://github.com/csquared/IMGKit). The background is always white (#ffffff). IMGkit is taking 1200 x 1000 pixel big "Screenshots", and I ...
1
vote
3answers
212 views

Ruby gem rmagick won't install on Mac OS X

I understand that this question has been asked a lot earlier, but none of the solutions worked for me and I'm really desperate right now. I'm trying to get rMagick to install using gem for an ...
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
1
vote
1answer
61 views

RMagick loses the first 8 characters of the file path I am trying to open

I am using Carrierwave with RMagick in my Ruby on Rails application. Everything works fine in development, but on my staging environment, I am having some problems. I tracked it down to what seems to ...
0
votes
1answer
60 views

How to resize an image with Rmagick crop if necessary.

I'm trying to create an image server that is riapi (https://github.com/riapi/riapi/blob/master/level-1.md) compliant. One of the required resize modes is crop (the image will be minimally cropped ...
0
votes
1answer
12 views

RMagick dissolve tiled

I have a picture of a paper, and I want to make it transparent, overlay it and tile it on top of another image. However, dissolve won't tile it, and composite_tile won't make it transparent. Any ...
0
votes
0answers
57 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 ...
1
vote
2answers
138 views

During install locomotive CMS bundle - Permission denied - ruby gems rmagick-2.12.2 install

I was installing locamotive's CMS, and this problem happens.. Let me know how can I solve it. Minis-MacBook-Air:~ daraotsu$ cd myapp Minis-MacBook-Air:myapp daraotsu$ bundle install Fetching gem ...
0
votes
1answer
64 views

Using a Carrierwave custom process I'm not able to access the model.id (multi-page PDF)

The idea is, I want to convert a PDF to an image per page. I've tried other methods which are on Stackoverflow but to no avail. Below is my uploader file. Uploader class PdfUploader < ...
0
votes
1answer
97 views

How to put a transparent background with carrierwave, resize_and_pad method and jpg?

I am using Carrierwave and RMagick to upload images to my Rails application. I have a image_uploader like that: class ImageUploader < CarrierWave::Uploader::Base # ... Other stuff ... process ...
1
vote
1answer
107 views

RMagick mask Paperclip image attachment

I am using Paperclip to attach image files to an object and all is well but I'd also like to mask (preferably only one of the image style – main_feature) the image upon upload. I'm able to save my ...
0
votes
2answers
230 views

Can't run rails server after trying to install Rmagick

I'm on windows and I downloaded and installed rmagick-win32 RMagick-2.12.0-ImageMagick-6.5.6-8-Q8 from here (http://rubyforge.org/frs/?group_id=12&release_id=42049) which I unzipped and installed ...

1 2 3 4 5 9