0
votes
0answers
44 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 = ...
1
vote
0answers
146 views

Getting RMagick to convert images to PDF with correct formatting

I'm converting some PNG images to a multipage PDF format, and having trouble getting the size right in the PDF output. My input is PNGs of 825 x 1125 pixels, which should be 300 dpi when sized to ...
0
votes
0answers
51 views

How to crop a single image into multiple pieces using rmagick?

I have a single image which has to be cropped into multiple images using the values provided in an array. How can this be achieved?
0
votes
0answers
71 views

Getting the dimensions of a resized image in carrierwave

I can't find a question that tackles this specific issue, so here goes... I need to get the dimensions of a processed image in carrierwave. I'm using rmagick and resize_to_fill or resize_to_limit. ...
3
votes
1answer
216 views

How do I append dynamic text to image using rmagick?

I'm building a rails app where a user can type in six words about themselves and upload an image. I want to append those six words to the image. I know how to get text append to work using "static" ...
2
votes
1answer
283 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 ...
1
vote
0answers
67 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
1answer
577 views

ImageMagick multiline text and background image

I'm learning to use ImageMagick, but I'm having trouble when I try to generate an image like the example below: And for that, I'm using the following code: convert original.jpg -size 460x ...
2
votes
1answer
269 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 ...
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, ...
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?
1
vote
1answer
325 views

crop gif image using libMagick

i am trying to crop a gif image using the libMagick.so library. ./convert --version Version: ImageMagick 6.2.8 03/31/08 Q16 file:/usr/share/ImageMagick-6.2.8/doc/index.html using the following ...
0
votes
1answer
206 views

Is it possible to use RMagick to draw overlays on to other application windows?

I am building a desktop app that will put a simple graphical HUD on to other application windows. So basically I need for my app to be able to access another app as the parent, and then build out the ...
0
votes
3answers
2k views

RMagick: scale and resize image for thumbnail

I want to resize/scale an image. The originals have not the same dimensions like 300x200 or 512x600. I want to resize the image to 100x100 but DONT crop anything from the image or change ratio. ...
6
votes
2answers
3k views

rails convert html to image

I'm looking for a way to convert html tags to a image on the fly... That means, that I want to be able to make a image_tag with a path to a method which returns the image created form html. I was ...
0
votes
1answer
282 views

image magick ,text arc

system(' convert -size 320x100 xc:lightblue -font Courier -pointsize 72 \ -fill navy -annotate +25+65 \'Ernakulam1\' \ -virtual-pixel transparent -distort arc 120 \ ...
0
votes
1answer
2k views

Require 'RMagick' not working?

I have installed RMagick on OSX via MacPorts and can see it by running 'gem server'. However when I try to include it in my script using require 'rubygems' require 'RMagick' It crashes with the ...
8
votes
1answer
3k views

How to serve generated images with sinatra in ruby

I wrote a simple Sinatra app that generate an image using rmagick from some user inputs. The image is saved in the ./public directory with a unique file name. The unique file name is used in the HTML ...
2
votes
2answers
1k views

Is there a ready made RMagick image editor out there?

I am about to build a basic online image editor for my web application using rails and rmagick. I did a bit of googling but couldn't find any existing solution, however I'd like to be sure before I ...