0
votes
1answer
15 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
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
1answer
59 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
84 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
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
27 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.
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
1answer
48 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 ...
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, ...
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
30 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
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 ...
1
vote
1answer
58 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
199 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 ...
1
vote
1answer
60 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
55 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 ...
1
vote
2answers
132 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
59 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
2answers
378 views

rmagick “installs” and is unable to find contents of gem

A bit of a noobie here, sorry if this has already been addressed but I can't find this one anywhere yet. Using OSX 10.7 with Jewelry Box, Ruby 1.8 and Rails 3. Spending several hours going through ...
0
votes
1answer
49 views

Quantizing to same base colors in RMagick

In RMagick you can call the quantize function which reduces the colors in the original image. I was wondering if there was any way for force a specific color palette onto the image. I'm processing ...
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 ...
0
votes
1answer
74 views

MiniMagick affecting Amazon S3 file that comes before resize code

I'm attempting to upload the full size image that comes from a post, then thumbnail it and put the thumbnail on S3. However, I'm running into a strange issue where the my resize code seems to be ...
0
votes
2answers
323 views

How to install rmagick gem on Windows?

How do I install rmagick gem for Windows XP? I already installed ImageMagick with the header files, and I installed RailsInstaller.org which comes with DevKit. I don't know where to look to fix these ...
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 ...
1
vote
0answers
13 views

How to tell RMagick which ImageMagick too use? [duplicate]

Possible Duplicate: RMagick complains it was configured with a different version of ImageMagick When I try the following in irb or a .rb script require 'rmagick' It results in the ...
0
votes
0answers
42 views

Ruby RMagick Cropping in Memory

I would like to crop image and then merge cropped image with frame image: i = Magick::ImageList.new("photo.jpg").first croped = i.crop(0, 40, 960, 640) croped.write('croped_photo.jpg') images = ...
0
votes
1answer
72 views

Rmagick and carrierwave installment in dreamhost vps

I am trying to install carrierwave not on my machine but on a vps hosted on dreamhost. Here the Gemfile gem "rmagick" gem 'carrierwave' Here the error when bundling: ...
0
votes
0answers
265 views

RMagick, Tempfile, Paperclip: how to save a image file with large dimensions and small kbs as a thumbnail?

I have a Rails rake task that is processing a batch of images. It strips out the white background (using RMagick), replaces it with a transparent layer, writes it to a tempfile and then saves it as a ...
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 ... ...
0
votes
3answers
592 views

OS X Lion, ImageMagick and RMagic - how to install?

I am trying to install ImageMagick and RMagic, because they don't work after the OS X Lion upgrade. When I ran brew install imagemagick I got the error Error: You must `brew link libpng' before ...
2
votes
4answers
561 views

Rails + Mac OS X: libMagickCore-Q16.7.dylib doesn't work

If I run some kind of rake command, I get this error message: rake aborted! dlopen(/Users/adam/.rvm/gems/ruby-1.9.3-p327/gems/rmagick-2.13.1/lib/RMagick2.bundle, 9): Library not loaded: ...
14
votes
5answers
5k 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 ...
4
votes
2answers
247 views

Rails 3.2 + OSX: Cannot install rmagick gem

I am trying to install an RoR app from Github and while running bundle install, I get this error: Installing rmagick (2.13.1) with native extensions Gem::Installer::ExtensionBuildError: ERROR: ...
0
votes
1answer
172 views

RMagick gem fails to install on Debian Stable

edit:[FIXED] The problem was that I had it installed already, but didn't know, and tried to install from source. This created two versions and the gem didn't know which to use. I fixed it by going to ...
3
votes
1answer
2k views

Use RbConfig instead of obsolete and deprecated Config

When I run my Rails app in WEBrick on Ubuntu, after upgrading to ruby-1.9.3-p327, I receive the following error: [rake --tasks] ...
0
votes
1answer
380 views

Installing gem-bundle for Redmine 2.1.4 with Ruby 1.9.3 (including rmagick 2.13.1) on Windows

I'm having problems installing json or rmagick gems on Windows, which I need because I am trying to install Redmine 2.1.4. As none of the procedures worked out-of-the-box for me and have struggled ...
0
votes
0answers
119 views

RMagick & GIF files / Convert to black and white

With the following code img = Magick::ImageList.new(self.image.path)[0] img = img.quantize(256, Magick::GRAYColorspace) I can't turn GIF images to black and white (grayscale), code that ...
0
votes
1answer
54 views

Multilingual text with rmagick

I'm using rmagick to annotate images programatically with text. The text will need to support a range of languages including Chinese, Korean, English among others. The font requirements I'm dealing ...
0
votes
1answer
73 views

Create a title with two colors in RMagick

I need to create a caption for a picture using two colors, all the words are in black except one in other color... I've been reading the docs of RMagick I can't find a way of doing this... What I'm ...
4
votes
1answer
106 views

how to force build vendored gems in rails 3.01 - rmagick issue when vendored

I have vendored rmagick and its not behaving. Works fine when not vendored, but when vendoring using: gem unpack rmagick --target vendor/gems Fetching: rmagick-2.13.1.gem (100%) Unpacked gem: ...
0
votes
2answers
146 views

Ruby RMagick format conversion always leave border

I have the following code to convert PNG to JPG using Ruby RMagick and the converted image always have a border around it. Anyway to avoid it? Mac OS X 10.8.2 ruby 1.9.3p286 (2012-10-12 revision ...
0
votes
2answers
496 views

error when installing rmagic gem on Ubuntu 12.04 for Ruby on Rails

I am trying to get my Ruby on Rails application working and installing RMagic gem. But I get an error that says "Can't install RMagick 2.13.1. Can't find the ImageMagick library or one of the ...
3
votes
1answer
489 views

rmagick pixel color value

I am using rmagick to deal with getting a each single pixel of a bitmap. I need to get the values of colors in depth of 8 (256 colors), but unfortunately when i use pixel.[color] (pixel. red for ...
1
vote
1answer
178 views

RMagick - How to crop grid image into an array of images?

The following imageMagick command will crop a sprite image into several images divided equally: convert image.png -crop 2x3-40-20@ +repage +adjoin tile-%d.jpg Hot do I do this with Rmagick? But ...
2
votes
3answers
4k views

Installing RMagick gem — Can't find MagickWand.h

I am installing the rmagick gem on OSX 10.6.8, using gem install rmagick, and I am getting the following error Can't install RMagick 2.13.1. Can't find MagickWand.h. *** extconf.rb failed *** ...
1
vote
1answer
269 views

RMagick transparency not working when compositing one image over another

In the following code I'm trying to overlay a transparent square over the image of some mountains. I thought it would work, but by setting background_color = 'none' it doesn't make the image ...
2
votes
2answers
805 views

Change the color of an image with imagemagick

I want to change the foreground colors of an image using rmagick/imagemagick. To be more specific: I want to convert the black or the white glyphicons-halflings icons(which are included in twitter ...
0
votes
3answers
1k views

ImageMagick version cannot be found - rmagick install fails

Super confused and a first time Ruby user... I already have rmagick installed as denoted here: actionmailer (3.2.6) actionpack (3.2.6) activemodel (3.2.6) activerecord (3.2.6) activeresource (3.2.6) ...
1
vote
2answers
109 views

How can I render an image with Padrino?

I need to create image files on-the-fly in my controller with RMagick and send them to browser. Looks like it's very simple, but I can't find a way. I've tried just simply render them, but it fails ...

1 2 3 4 5