Mobile app version of vmapp.org
Login or Join
Murphy569

: Inverse Transparency of a PNG I'm writing a little javascript application in which users need to be able to choose an image from an "image library" and then choose the color of said image.

@Murphy569

Posted in: #AdobePhotoshop

I'm writing a little javascript application in which users need to be able to choose an image from an "image library" and then choose the color of said image. There will be a massive number of images and a massive number of colors, and I would really love if I did not have to make each color of each image. Instead, I was hoping to be able to take a png and swap the transparent and visible elements, so that I can just put a solid block of color behind it to change the color. Does anybody know of a good way to quickly do this (I have adobe design premium 5.5)? Thanks in advance!

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Murphy569

2 Comments

Sorted by latest first Latest Oldest Best

 

@Ravi4787994

Thinking laterally: What about using SVG and changing the colour dynamically?

Or using an font that contains all the glyphs you want and changing the colour with CSS?

It really depends on the precise result you're after, but there's hopefully a realtime method for doing it, so you don't need to generate an image for each colour variation.

Quite a few good SVG tricks are noted here, including colour change via CSS: css-tricks.com/using-svg/

10% popularity Vote Up Vote Down


 

@Kevin459

I can suggest a destructive method, as I've tried using masks but I couldn't get it to work.


Begin with a large canvas size, i.e. the largest possible display size, and 300 PPI.
Set the background to be consistent with the background you're using in your app.
Create the shape you want to be able to colour variably.
Use the Magic Wand tool with zero Tolerance to capture the shape of the image.
Rasterize the background and press delete.
You should end up with a cut out of the shape.
Resize the image to the sizes you need it at.


You will need to use various thumbnail sizes with this method if you need to display it at largely varying sizes, as it's not vector based it won't scale that beautifully outside of a GD program.

You can then change the background colour of the image container dynamically with your script.

A better, but far more time consuming method would be to create a vector based outline.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme