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

learn more… | top users | synonyms

0
votes
2answers
787 views

Rails - rMagic is not working?

I am trying ti use "carrierWave". I have installed "imagemagic" using homebrew and both rmagic and carrierwave gems. When I run rails g uploader image I get this error in terminal - Will appreciate ...
0
votes
2answers
497 views

ImageMagick and rmagick OS X 10.7

ImageMagick and rmagick gem is very tough to install. I tried using MacPort and then using https://github.com/maddox/magick-installer. I'm getting errors. Please help me to uninstall the uncompleted ...
0
votes
1answer
1k views

Installing imagemagick and rmagick on Lion 10.7

I used this link http://rmagick.rubyforge.org/install-osx.html and now I cannot do brew install imagemagic too.. I did this gem install rmagick --version 1.15.17 Building native extensions. ...
1
vote
2answers
893 views

rmagick installation [closed]

I am facing some issues while installing Rmagick. There are 2 ways to install this: 1] using Ruby-Gem 2] bld the source I am facing issues in both, but I will like to be able to get the gem and ...
3
votes
1answer
157 views

New paperclip fingerprint after modifying style?

It looks like Paperclip generates a fingerprint for an attachment only when the original style is changed. I want to keep the original style unchanged but crop one of my other styles (let's call it ...
4
votes
1answer
721 views

RMagick - ImageMagick gives error “no decode delegate for this image format”

The problem occurs when i try to manipulate an image uploaded from sinatra. File.open(params[:file][:tempfile]) do |p| thumb = Magick::Image.read(p) thumb.crop_resized!(75, 75, ...
0
votes
4answers
443 views

RMagick - S3 - Heroku, problems with RMagick file open

I am trying to upload a file from browser, then make one thumbnail from it, then upload both to s3. File.open(params[:file][:tempfile]) do |p| AWS::S3::Base.establish_connection!( ...
0
votes
1answer
472 views

Ruby & RMagick: determining real width & height of text

I'm using RMagick and I want to draw text vertically or horizontally (depends on user input) with background color set by user. I've ran into odd problem: get_type_metrics(text) returns invalid data. ...
0
votes
3answers
2k views

error installing rmagick gem on OSX - ERROR: Failed to build gem native extension

I have installed about 40 other gems but this one can't install due to this error: Installing rmagick (2.13.1) with native extensions Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem ...
0
votes
1answer
114 views

Ask RMagick to send a direct command to ImageMagick

Some options of ImageMagick are not supported by RMagick. Also sometimes it is in fact more convenient to use ImageMagick. Is there a method (of the Image object) that allows you to send commands ...
0
votes
1answer
184 views

How to get Magick::ImageList?

I am a novice in Ruby, and I don't know how to do it My aim is to make a photo collage , there are several steps to do it: connect to flickr service via gem flickraw - done ask flickr for specific ...
1
vote
2answers
484 views

Amazon ec2 cpu usage is crazy high when processing images with rmagick

I have an application that does some image processing using rmagick and imagemagick. This image processing was being done in background job via resque and redis. The problem is that even just one ...
0
votes
1answer
296 views

os installing rmagick gem error

I upgraded to Lion and am now seeing an error when installing the rmagick gem as part of a bundle: "gcc-4.2 -o conftest -I/Users/home/.rvm/rubies/ruby-1.9.3-p0/include/ruby-1.9.1/x86_64-darwin10.8.0 ...
1
vote
0answers
317 views

Error installing rmagick gem on osx lion with homebrew [duplicate]

Possible Duplicate: Mac Rmagick wont install with Xcode 4.2 I can't seem to install the rmagick gem on osx. I've installed imagemagick via homebrew after downgrading Xcode from 4.2 to 4.1. ...
3
votes
1answer
970 views

Carrierwave add a watermark to processed images

Im trying to add a watermark to processed images with below code I got from several resources: def watermark manipulate! do |img| logo = ...
0
votes
1answer
165 views

Compositing PNG onto JPEG fails (colors are all rendered as black) on only one particular JPEG file

I'm building an application which uses Ruby+RMagick to composite PNG images onto various JPEG backgrounds. Everything is working, but we have found one particular JPEG background for which the PNG is ...
0
votes
1answer
833 views

How to switch from RMagick to MiniMagick

RMagick has been nothing but a pain in the butt for months (errors out of the clear blue sky on production). What are the alternatives for the following RMagic code in MiniMagick?... ...
1
vote
1answer
190 views

Rails - How can I generate thumbails on-the-fly

I am looking for a way to generate thumbnails of my uploaded images on the fly. I have a product model that looks kind of like this: class Product include Mongoid::Document include ...
1
vote
1answer
172 views

Rmagick each_pixel, how does it work?

I need to manipulate each pixel of an image in rmagick. I am doing this in IRB(interactive ruby) This is what I have: require 'Rmagick' include Magick f = Image.new(100,100) f.display #so far so ...
20
votes
8answers
15k 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, ...
1
vote
1answer
578 views

RMagick fails to install using bundler, installs correctly using RubyGems

On my Ubuntu 10.04 machine I'm having some issues installing RMagick (Ruby's ImageMagick gem), both with the regular imagemagick packages from apt and with ImageMagick compiled from source. The issue ...
2
votes
2answers
3k views

Carrierwave image dimension

How can I get the width and height of the current instance of carrierwave? Something like this: car_images.each do | image| image_tag( image.photo_url, :width => image.photo_width, :height ...
2
votes
2answers
318 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"); ...
0
votes
1answer
578 views

sudo gem install rmagick fails

I am getting this error when I try to install RMagick on my machine so I can play with Scruffy graph creator: sudo gem install rmagick Building native extensions. This could take a while... ERROR: ...
0
votes
2answers
794 views

All of a sudden started getting “Could Not Run The `Identify` Command. Please Install ImageMagick.”

I've had ImageMagick, RMagick, & PaperClip working properly with everything setup including the config Paperclip.options[:command_path] in production.rb file. All of a sudden I've started getting ...
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 ...
0
votes
2answers
124 views

rails and rmagick and webfaction

I am having a problem loading imagemagick and rmagick on webfaction. I have installed a rails app called Balderapp that organizes images. I can't seem to upload the image through balder. Balder ...
2
votes
2answers
294 views

Carrierwave is not sizing versions using rmagick

I am trying to use carrierwave to manage images. My problem is that all versions of the images I upload are created, but at the full size. Code: class TechnologyImageUploader < ...
0
votes
1answer
55 views

How to get average of 4 colors in Ruby?

I'm getting 4 colors off an image using RMagick using this code: color1 = img.pixel_color(1,1) color2 = img.pixel_color(50,1) color3 = img.pixel_color(1,50) color4 = img.pixel_color(50,50) How can ...
7
votes
2answers
3k views

Carrierwave - Resizing images to fixed width

I'm using RMagick and want my images to be resized to a fixed width of 100px, and scale the height proportionally. For example, if a user were to upload a 300x900px, I would like it to be scaled to ...
0
votes
1answer
638 views

Image manipulation Rails Carrierwave to Amazon S3

I am uploading images using jquery upload to Amazon s3, I am using Ruby Gems carrierwave and fog to make it work... But what I am trying to do is when I upload an image to s3, the image generated by ...
0
votes
0answers
161 views

Integrating RMagick with Rails

I am recieving this error: non-conforming drawing primitive definition `.' @ error/draw.c/DrawImage/3147 everytime this code is executed: def create_show_image (font_name, extension) img = ...
1
vote
3answers
480 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 ...
2
votes
2answers
680 views

Scale down image until one side reaches goal dimension

How do you scale down an image until one side reaches it's goal dimension with Carrierwave and rmagick? Example: Goal dimensions: 600x400 Picture being uploaded: 700x450 I want this image to be ...
2
votes
1answer
266 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 ...
4
votes
2answers
576 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 ...
1
vote
1answer
384 views

Rails 3.1 + Ruby 1.9.3-rc1 + Rmagick + CarrierWave = [BUG] Segmentation fault ruby 1.9.3dev

I have a problem with carrier wave and Rmagick on OSX lion latest. I get a full bug report below. Is there a workaround for this? Installed rmagick with sudo gem install rmagick Using Carrierwave to ...
0
votes
1answer
136 views

How to Install imagemagick 8-bit depth with homebrew

I'm using Mac Lion with RVM, homebrew and bundler and the rmagick gem When I execute the following command: brew install imagemagick convert --version the imagemagick version that is installed is ...
0
votes
1answer
600 views

How do I improve quality when using RMagick/ImageMagick to convert from SVG to PDF?

I use Rubyvis to generate SVG plots, and then allow the user to save either to SVG directly, or to some other format using RMagick. The SVG plots have a set size, which is specified in the SVG file. ...
1
vote
1answer
203 views

How can I correctly print Arabic through Ruby?

I'm trying to generate images through RMagick that contain Arabic text that has been parsed from an excel spreadsheet. Arabic letters change shape depending on their neighbors and this seems to happen ...
1
vote
2answers
1k views

Ruby / RMagick rotate and combine images

I'm trying to rotate an image before composing it ontop of another, using RMagick with ruby. I can compose the overlaid image but when I try to rotate the image parts of the background are removed, ...
1
vote
2answers
1k views

Generate imagemagick / carrierwave thumbnails when they are requested

I am using the carrierwave gem with Rmagick in a Rails app. I've set up a new version in my uploader file: class ImageUploader < CarrierWave::Uploader::Base include CarrierWave::RMagick ...
0
votes
1answer
241 views

MiniMagick rows and columns

In RMagick, I can do Magick::Image.read(url).first.columns, but when I try MiniMagick::Image.open(url).columns, I get a NoMethodError. How would I access rows and columns in MiniMagick?
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 ...
1
vote
0answers
240 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 ...
18
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 ...
1
vote
2answers
400 views

Cut one image into smaller pieces

I need to write some ruby script which will help me with big image files. I know basics of imagemagick and rmagick library(ruby), but till now I was doing generally simple things (thumbnailing, adding ...
0
votes
1answer
366 views

rails win7 aptana debug server fail to start

i have the following installed for my rails app on windows 7. windows 7 64bit ruby 1.8.7 rails 2.3.14 activesupport 2.3.9, 2.3.14 bundler 1.0.21 carrierwave 0.4.10 polyglot 0.3.2 rmagick 2.13.1 ...
0
votes
0answers
900 views

How can I use rmagick and carrierwave to resize an image to a fixed width and maximum height, where the excess height gets cropped off?

I want the image to be resized to a specific width (220px), then basically a resize_to_fill on a maximum height (280px). I am looking at the output of rows and cols when it's resizing in the ...
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 ...

1 3 4 5 6 7 9