image_processing icon indicating copy to clipboard operation
image_processing copied to clipboard

High-level image processing wrapper for libvips and ImageMagick/GraphicsMagick

Results 20 image_processing issues
Sort by recently updated
recently updated
newest added

Would you be amenable to a pull request that adds a `crop: true` parameter to `MiniMagick#resize_to_fill` that would then skip the cropping step when set to false? We have a...

Hello all, git master libvips has a new feature which might be relevant to the `image_processing` gem: true streaming. There's a short note about it here: https://libvips.github.io/libvips/2019/11/29/True-streaming-for-libvips.html You can now...

The similarity command leaves a line on the side of 90/180/270 rotations. This PR uses the rot command where possible. resolves #104

Besides processing images it would be nice to analyze images as well to get metadata like: width, height and rotation. This is currently based on the ActiveStorage::Analyzer::ImageAnalyzer. I'd like to...

Hi, this is related to https://github.com/carrierwaveuploader/carrierwave/issues/2481 and https://github.com/janko/image_processing/pull/67 Default image sharpening was disabled a while back in the ImageMagick backend, but not in the VIPS backend. I think it should...

I have the following: ``` has_one_attached :cover_image do |image| image.variant :square_medium, format: 'jpg', resize_to_fill: [600, 600], composite: ['app/assets/images/watermark.png', { gravity: 'south-west', offset: [10, 10], }], saver: { subsample_mode: 'on', strip:...

This method allows one to provide a desired size to cover (width and height) and the image will be resized maintaining the ratio so that it covers that box without...

the gemspec currently restricts mini_magick to (>= 4.9.5, < 5), which prevents the update to the newly released 5.0.0 .

Hello, With Ruby 3.3 and MiniMagick 5.1.2, there are two test failures: ``` 1) Error: ImageProcessing::MiniMagick#test_0011_applies loader options: MiniMagick::Error: `magick -strip test/fixtures/portrait.jpg -auto-orient /tmp/image_processing20250217-18955-l0vx39.jpg` failed with status: 1 and error:...

First, thanks for this great gem! Is there any way to require only ruby-vips? I was thinking that maybe is a good idea do not include both libs, so we...