Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8216225
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T12:03:20+00:00 2026-06-07T12:03:20+00:00

In paperclip, for example, it is possible to add this to set white background

  • 0

In paperclip, for example, it is possible to add this to set white background when .png is converted to .jpg:

:convert_options => { :all => '-background white -flatten +matte'}

Once carrierwave uses rmagick too, how to do that?

Obs.: My files are being stored in S3.

My code:

version :square do
    process :resize_to_fill => [200, 200]
    process :convert => 'jpg'
end
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T12:03:21+00:00Added an answer on June 7, 2026 at 12:03 pm

    I’ve solved the problem, but I’m not sure if this is the best approach:

    def resize_to_fill(width, height, gravity = 'Center', color = "white")
        manipulate! do |img|
          cols, rows = img[:dimensions]
          img.combine_options do |cmd|
            if width != cols || height != rows
              scale = [width/cols.to_f, height/rows.to_f].max
              cols = (scale * (cols + 0.5)).round
              rows = (scale * (rows + 0.5)).round
              cmd.resize "#{cols}x#{rows}"
            end
            cmd.gravity gravity
            cmd.background "rgba(255,255,255,0.0)"
            cmd.extent "#{width}x#{height}" if cols != width || rows != height
          end
          ilist = Magick::ImageList.new
          rows < cols ? dim = rows : dim = cols
          ilist.new_image(dim, dim) { self.background_color = "#{color}" }
          ilist.from_blob(img.to_blob)
          img = ilist.flatten_images
          img = yield(img) if block_given?
          img
        end
      end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an existing Paperclip setup that converts all uploaded images to JPG's. However,
For the life of my I can't understand how the basic paperclip example works.
I'm using Paperclip and have a default_url option like this for one of my
Is it possible to enforce a 'content type' validation in paperclip without enforcing a
Paperclip produces this error, after checking out the plugin's rails3 branch. My Gemfile has
(I am new to paperclip) I have this model hierarchy: base model: class QuestDescription
I'm using paperclip to upload some attachments to my application. This works fine, but
I have set up Paperclip and ImageMagick successfully on my system, and files are
I am using Paperclip to upload multiple item images. I followed some of this
I have paperclip in Rails (3) working with simple cropping, for example the blow

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.