MiniMagick is a Ruby wrapper for ImageMagick command line.

learn more… | top users | synonyms

0
votes
1answer
17 views

Flash message being rendered on exception page

I have a weird issue. We have an image validator that prevents images smaller than a certain size being uploaded. If the image is too small then it directs the user to the /upload page with a flash ...
0
votes
0answers
10 views

Assign background to image generated using carrierwave mini-magick

I am trying to assign background to image which i generated by mini magick after uploading from carrierwave . In my AssetUploader file i have def large_cover manipulate! do |img| ...
2
votes
2answers
463 views

watir gem install error due to mini_magick file w/ special characters

I have been trying to install the watir gem for ruby 2. I followed the watir books install instructions exactly but once the watir install get to the mini_magick gem it gives this error ERROR: While ...
0
votes
0answers
34 views

mini_magick thumbnail with gravity center

I want to create a padded thumbnail, like described here This command works: convert src.png -thumbnail '200x200>' -gravity center -extent '200x200' dst.png But this ruby code is not working: ...
0
votes
0answers
27 views

Dealing with default images with Carrierwave and Minimagick

In my Ruby application, the following is my Carrierwave setup for users' profile images: def default_url 'default.jpg' end process :resize_to_fill => [200, 250] version :square do ...
1
vote
0answers
53 views

Caching generated images with Sinatra, MiniMagick & nginx

I'm building a placeholder image site - similar enough to http://placekitten.com/ I've got a quick & dirty version working with a directory of big images, and a Sinatra route that randomises the ...
0
votes
1answer
137 views

Carrierwave converting PDF to JPG (MiniMagick)

I have a problem creating JPG thumbnails for PDF files. I'm using Carrierwave. Imagemagick is properly installed. There are no problems creating thumbnails of PNG, JPG or GIF files. Here is the code ...
0
votes
0answers
32 views

Manipulate and current path in carrierwave object (RailsAdmin and MiniMagick)

I had an issue with image cropping and mini magick, and then found this post stating that the method manipulate! won't work if the object doesn't respond to current_path. ...
0
votes
0answers
41 views

Imagemagick to Imagick

Below is my Image Magick code which works fine <? exec("convert -size 400x100 gradient:orange-yellow gradiant.png"); $cmd = " -size 400x100 xc:none -fill white ". " -draw ...
0
votes
0answers
155 views

CarrierWave RMagick - How do I cause manipulate! to be called?

Greetings wise people, I am trying to use MiniMagick with CarrierWave in Rails 3 to resize and store an image according to the instructions here: ...
0
votes
0answers
83 views

Rspec process hangs at different places, process cannot be killed. How to diagnose?

In a rails application I'm developing (on OS-X), I'm finding running the test suite via rspec locking up increasingly frequently. It does not happen every time. I've tried adding --format ...
0
votes
0answers
83 views

Carrierwave quality doesnt apply on recreate_versions

I've encountered a problem concerning carrierwave quality settings. To begin with, let me present some of the code (uploaders/second_image_uploader): class SecondImageUploader < ...
0
votes
1answer
206 views

Trying to use mini_magick gem with carrierwave to resize images (Ruby on Rails)

I had a really tough time trying to get rmagick working so I am trying to get mini_magick to do it instead. The image uploads fine and everything, but I just want it to be resized. I am using this ...
0
votes
0answers
108 views

Mogrify & resizing SVG files

I'm calling Mogrify from MiniMagick within ruby - and I'm getting the following error from the mogrify command line call. How should I resize an SVG file so that the raster image contains all of the ...
0
votes
1answer
173 views

Photo Failed to manipulate with MiniMagick, maybe it is not an image? error

I have the following code, which resizes and image and then adds some hex background. On localhost this works, but on heroku i get the following error version :big do process :offer_resize_and_pad ...
0
votes
1answer
82 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 ...
1
vote
0answers
193 views

Rails 3: Trouble uploading image files with Carrierwave/Minimagick

I've been getting some trouble lately when uploading files with Carrierwave/Minimagick. When I upload an image file (which is to be processed by Minimagick) I get this kind of error: No such file or ...
0
votes
1answer
302 views

Carrierwave/Minimagick not processing images after upload

I am having trouble implementing a simple image uploader with Carrierwave/Minimagick gems in RoR. I'm trying to convert the file to grayscale upon upload, but I am getting an error. Here is the ...
0
votes
1answer
52 views

Resize image to original versions

I am using carrierwave and mini magick. In the uploader i have process resize_to_fit: [300,200] Now, all the uploaded images were processed, but I now i need the original version. Is there a way ...
1
vote
2answers
211 views

CarrierWave - Set width and max height of images

I use CarrierWave and I want to resize the images to a width of 220px and a max-height of 220px. If I use process :resize_to_fit => [220,220] it could be that the width is not 220px. What can I do? ...
0
votes
0answers
113 views

Can't upload photo, failed to manipulate minimagick

Using Ruby on Rails, I was trying to upload a photo on my localhost. However, it seems like I can't upload and gets an error: "Failed to manipulate with MiniMagick, maybe it is not an image? Original ...
0
votes
1answer
126 views

Unable to upload and process image with CarrierWave and MiniMagick

I am trying to implement image-upload with CarrierWave and MiniMagick. I was able to upload an image with carrierwave, but when I implemented MiniMagick to resize uploaded images, it returned this ...
1
vote
0answers
181 views

MiniMagick: Making a png partially opaque/how to use '-evaluate'

I am trying to make a partially opaque png using MiniMagick, but I guess what it really boils down to is the syntax for using '-evaluate' This works in the terminal: convert input.jpg -alpha on ...
0
votes
1answer
166 views

Carrierwave + MiniMagick - How to squash animated GIFs to their first frame?

Anyone know how to squash animated GIFs down to their first frame using Carrierwave + MiniMagick?
1
vote
1answer
400 views

Errno::ENOENT when uploading an image using Carrierwave and MiniMagick

My rails app has an image upload which uses the latest versions of Carrierwave and MiniMagick. It works great on the server, but in my local host which is WEBrick and Windows 7, i get this error when ...
0
votes
2answers
922 views

How to crop image on upload with Rails, Carrierwave and Minimagick?

I have read: Undefined Method crop! Using Carrierwave with MiniMagick on rails 3.1.3 Carrierwave Cropping http://pastebin.com/ue4mVbC8 And so I tried: # encoding: utf-8 class ...
3
votes
1answer
382 views

Error in Image crop using MiniMagick with carreirwave in Rails 3

I am trying to crop image using mini magick gem with carrierwave. I am facing following issue when i am creating user. Errno::ENOENT in UsersController#create No such file or directory - identify ...
0
votes
1answer
354 views

Carrierwave resize is not working (Rails 3 and MiniMagick)

what I want to do is to save a website url with a full-size snapshot via IMGKit. In one of the views I also want to have a thumbnail version of the snapshot. I'm using carrierwave in order to ...
0
votes
2answers
542 views

Carrierwave: Scale image if the size is larger than (conditionally create versions)

Is possible with carrierwave create a version (for example thumb) only if the image is larger than the size of the version?? Example: version :thumb, :if => :is_thumbnable? do process ...
0
votes
2answers
534 views

CarrierWave MiniMagick resizing gives an error

I am using CarrierWave with MiniMagick to resize and uploaded file. I have the version directive in my uploader version :thumb do process :resize_to_limit => [100, 100] end But when I ...
0
votes
1answer
136 views

Mini Magick, GraphicMagick and Carrierwave

I am trying to get my uploader file to resize images as they are uploaded using the following code: version :thumb do process :resize_to_limit => [230, 230] end I have installed Carrierwave ...
1
vote
1answer
465 views

Paperclip and local image

I use gems paperclip and rqrcode-rails3. I wrote qr-code generator in my controller: def create_qrcode(string, options={}) format = options[:format] || :png size = options[:size] || ...
0
votes
1answer
214 views

ImageMagick on Heroku won't take -fill as 'white'

I'm running a Rails 3.2 app locally using MiniMagick with ImageMagick and this piece of code img.combine_options do |c| c.gravity 'Center' c.font "#{::Rails.root}/public/fonts/Impact.ttf" ...
0
votes
1answer
149 views

Unicode characters render with Rmagick but not with Minimagick

Due to the performance advantages of Minimagick of Rmagick (and the fact the Rmagik is on the way out) I would like to be able to able to perform the following operation in Minimagick. By default it ...
1
vote
2answers
417 views

Special characters in c.draw “text” with mini_magick (rails)

I am having quite a bit of trouble getting mini_magick to draw text that contains quotes, double quotes, etc. on an image. I have tried various modifications on c.draw to no avail. What is the best ...
0
votes
1answer
245 views

Write a string with caption method using MiniMagick

I'm trying to write a string over a image. Currently I'm using MiniMagick and I can resize and overlap two images, but when I try write a multiline string using caption nothing happens to final image, ...
0
votes
1answer
132 views

MiniMagick (+Rails): How to display number of scenes in an image

I have a Rails app that uploads images for image processing, and I want to be able to 1) See how many pages/frames/scenes there are in an image, and 2) split multi-page images into single-page jpegs. ...
0
votes
1answer
268 views

Insert subimage into another image with MiniMagick

I'm looking to write the Carrierwave process to add a subimage into another image with MiniMagick, any ideas ? This doc https://github.com/probablycorey/mini_magick say we can use all the mogrify ...
2
votes
1answer
1k views

Carrierwave Error Msg: Failed to manipulate with MiniMagick, maybe it is not an image?

I am upgrading my app to rails 3.2 on ruby 1.9. I had to drop attachment_fu. Carrierwave seemed the obvious replacement. At this stage I am uploading files to the file system (no cloud files, yet). I ...
1
vote
0answers
287 views

right_aws and RMagick/mini_magick: cant create Image object out of image grabbed from s3

I am trying to grab an image from amazon s3, do some stuff with Rmagick, and upload the image back to s3. I am attempting to do this with right_aws and RMagick/mini_magick. So far i havent had any ...
2
votes
1answer
1k views

Unable to crop image using mini_magick

I am using mini_magick as the interface of utilizing ImageMagick to manipulate some image. The resize works fine. But when I want to crop some image: img = MiniMagick::Image.open(url) ...
1
vote
1answer
1k views

Resize image using mini_magick, but no file in /tmp directory

I'm using the carrier_wave and mini_magick gems along with ImageMagick in a Rails app. All versions are as current as can be. It works fine in development mode. However, I just deployed the app and ...
0
votes
1answer
499 views

scale image only width with minimagick in ruby on rails 3

I am using this method for resize the images: version :big do process :resize_to_fit => [560, 200] process :convert => :png end But with this method I have ...
1
vote
1answer
1k views

How to validate image width and height on upload with carrierwave, mini magick and mongoid?

I need to check if the images people upload to my site have the exact width of 200px and height of 300px. If they haven't got those dimensions, they shouldn't be saved in the database. I've tried for ...
0
votes
2answers
1k views

mini_magick gem doesn't work with my ImageMagick install

I have the ImageMagick installed via MacPorts and the mini_magick gem and I get an error for the following script. How can I resolve this problem? require 'rubygems' require 'mini_magick' image = ...
1
vote
2answers
684 views

How to get EXIF keywords using mini_magick in a Rails app?

I am attempting to pull the EXIF information for images that have values for the EXIF "keywords" attribute. I have successfully read EXIF information using mini_magick by simply opening an image and ...
3
votes
2answers
2k views

carrierwave + mini_magick gems = not an image error

I'm using: - carrierwave 0.6.0 - rails 3.2.1 - mini_magick 3.4 - ruby 1.9.2p290 And during image uploading I want to resize uploading pic: (image_uploader.rb) process :resize_to_fit => [200, ...
1
vote
2answers
275 views

How to make images rounded corner when uploading image with MiniMagick

Is it possible to make an image (avatar image uploaded by user) rounded corners for my Rails application? I'm currently using MiniMagick with CarrierWave to upload and resize photos.
1
vote
1answer
560 views

How do you convert ImageMagick command line options to MiniMagick for use in CarrierWave

I tried to convert this command line option to a processor method to use in carrierwave but I couldn't get it to work. I was following the method I saw here. convert E22725-89PC.jpg -matte -fill ...
1
vote
0answers
211 views

rmagick replacement with minimagick

at the beginning of the project i included RMagick gem and now app use it for getting HSL tone of image (for mono-color indexing/search). it works ok but in some reason i need to switch to minimagick ...

1 2