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 3998650
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T07:33:10+00:00 2026-05-20T07:33:10+00:00

I am using Perl Magick which is the Perl module for Image Magick to

  • 0

I am using Perl Magick which is the Perl module for Image Magick to convert images from GIF and PNG to JPEG. Everything works perfectly until I try to convert an image with a transparent background.

The default behavior for the Resize() function is to use black which ruins the images we are trying to convert. I want to instead change the default background color to white and can’t figure out how to do it.

If you use Image Magick on the command line you can change the background by using:

convert image.gif -background \#FFFFFF -flatten image.jpg

And here is the perl code I am using to resize and convert the image:

use Image::Magick;
my $image = Image::Magick->new();
$image->Read("input.png");
$image->Resize(geometry=>'500x');
$image->Write("output.jpg");

I tried the following to get it to work but to no avail:

use Image::Magick;
my $image = Image::Magick->new();
$image->Read("input.png");
$image->Set(background => 'white'); 
$image->Flatten();
$image->Resize(geometry=>'500x');
$image->Write("output.jpg");

And also:

use Image::Magick;
my $image = Image::Magick->new();
$image->Read("input.png");
$image->Resize(geometry=>'500x',background=>'white');
$image->Write("output.jpg");

I’d appreciate any help on figuring out how to set the default background color successfully for the Perl Magick Resize() method. Thanks in advance for your help!

  • 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-05-20T07:33:11+00:00Added an answer on May 20, 2026 at 7:33 am

    Unfortunately I wasn’t able to get this to work in a clean way that simply used the Resize() method and passed it an appropriate parameter to set the background color.

    Instead what I’ve done to solve the problem is first convert the file to JPG format and then resize it afterwards. This works since the default background color for Image Magick is white so the background is set correctly during the conversion and then the Resize() method simply uses the JPG image without having to do any interpretation.

    Not the ideal solution in my estimation but it does work reliably.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using Perl and the Image::Magick module to process some JPEGs. I'm using the
How do I connect to a MSSQL database using Perl's DBI module in Windows?
I'm using Perl & MAIL::IMAPClient to save emails from Gmail as .txt files using
I'm using Perl's module File::Find to traverse across a directory. This directory is an
I'm using Perl to parse the output from objdump . I have the following
At work I'm using Perl 5.8.0 on Windows. When I first put Perl on,
I have trouble using Perl grep() with a string that may contain chars that
How can I send email using Perl through my Gmail account? The one CPAN
I've connected to a MySQL database using Perl DBI. I would like to find
I have a Perl script that I'm attempting to set up using Perl Threads

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.