Jump to content

Change the background on picture to black


Recommended Posts

  • 3 weeks later...
  • 1 month later...

Thumbnail backgrounds..

I've changed my thumbnails from white to dark grey.

edit images.inc.php


I changed all the instances of 255, 255, 255 (RGB for white) to 46, 48, 47 (dark grey).. Black would be 0, 0, 0 etc.

So you end up with $white = imagecolorallocate($destImage, 46, 48, 47);

or
$white = imagecolorallocate($destImage, 0, 0, 0);

and therefore $white = black. :)
I know it's not an elegant fix but it did the trick.

Regen images from the link on Back Office >> Preferences >> Image

Link to comment
Share on other sites

  • 5 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...