It is normal to create a white color whose alpha is 255.
Is it possible to create a white color whose alpha is 0 ?If so,how to do?
It is normal to create a white color whose alpha is 255.
Is it possible to create a white color whose alpha is 0 ?If so,how to do?
There are color selectors that have an additional alpha value but AFAIK they are only used to set color values to render channels and "quickmask" when these are made visible.
To paint "manually" with a given opacity you set the opacity on the tool (opacity slider in the Tool options dialog). Programmatically things are a bit more complex and only the bucket-fill API seems to directly support an opacity, but you can always paint on another layer and set the opacity of that layer (gimp-layer-set-opacity
).