RMagick is an interface between the Ruby programming language and the ImageMagick® and GraphicsMagick image processing libraries.
0
votes
1answer
13 views
rmagick stuck in an infinite loop that creates an image over and over
I'm using rmagick to create a montage. After I submit a request, it gets stuck in an infinite loop, and the request continues to create the same image over, and over, until I manually restart server:
...
-1
votes
1answer
53 views
How do I split an array into a bunch of strings in Ruby?
This method accepts a list of URLs:
Magick::ImageList.new("img1url", "img2url", "img3url")
I have this string "url1, url2, url3".
How can I feed the above method my list as separate arguments? I ...
0
votes
1answer
14 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 ...
4
votes
6answers
4k views
Bundle can't install RMagick gem on Mac OSX 10.7
I've installed ImageMagick with ImageMagick installer script https://github.com/maddox/magick-installer. I am on OSX Lion 10.7, using RVM, Ruby 1.9.3p125.
The problem seems to be with MagickWand.h ...
0
votes
0answers
24 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
41 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
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
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 ...
1
vote
3answers
483 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 ...
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
21 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 ...
3
votes
4answers
1k views
carrierwave thumb issue
This question was asked, but no answer given...I'm having the same issue.
I'm using carrierwave for uploading files everything works great until i wanted to create thumbs
images are saved in a tmp ...
0
votes
0answers
30 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
28 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 ...
1
vote
3answers
214 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 ...
2
votes
0answers
96 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
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
...
22
votes
7answers
11k 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 ...
0
votes
1answer
33 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
33 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
11 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?
3
votes
5answers
1k views
rmagick and imagemagick bundle/homebrew error
Please see error stack below. I tried uninstall/install of imagemagick via homebrew, 'gem pristine rmagick', and reinstall of rmagick. All have returned the same error. Any help would be VERY much ...
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
73 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
120 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
17 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
3answers
943 views
How to programmatically remove the background of an image making it transparent in ruby?
I have a bunch of images of products and I'd like to remove the background of each programmatically in ruby. Here are some example images I put up on imgur.
I'll put an example one here just so ...
2
votes
2answers
1k views
Create paperclip attachment from rmagick image
I have a problem to find a way to save an image created with RMagick in a paperclip attachment.
imageList = Magick::ImageList.new
imageList.new("images/apple.gif", "images/overlay.png")
...
picture = ...
0
votes
0answers
69 views
Rmagick not working for .tif image
I have uploaded .tif image in my we application. It should be converted into 7 different size format. But .tif images are not converted into different images. I am using Rmagic to convert it into ...
9
votes
4answers
2k views
Is it possible to get the average image color with RMagick?
I need to know the average color from an image when I upload it to my Ruby on Rails application. Is it possible to get the average color value in HEX or in RGB to use this color later in the view ...
0
votes
2answers
30 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
3answers
4k views
How fix error “no such file to load — RMagick”?
After upgrading to Rails 3.0 Library rmagick longer be detected. Here is my setup:
Ubuntu server 10.4
gem 1.7.2
ruby 1.9.1
rails 3.0.7
rmagick-2.13.1
In irb can include library:
...
5
votes
4answers
5k views
Can't install Rmagick and Imagemagick on Windows 7
when I run gem install rmagick-2.13.1.gem from the directory in which rmagick-2.13.1.gem is I get an Error saying that it failed to build gem native extension, below which it says
...
1
vote
0answers
102 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 ...
2
votes
1answer
5k views
Error installing rmagick: ERROR: Failed to build gem native extension
I am trying to install RmMagic using the below command:
gem install rmagick -v=2.12.2
After running this command i get some error :
Temporarily enhancing PATH to include DevKit...
Building native ...
0
votes
0answers
40 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) { ...
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 ...
6
votes
2answers
909 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?
0
votes
1answer
50 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
44 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
22 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
...
0
votes
1answer
98 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 ...
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 ...
65
votes
9answers
32k 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 ...
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 ...
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, ...
3
votes
3answers
397 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 ...


