|
|
|
|
|
<Image variable>.ModifyOpacity (Function) In french: <Variable Image>.ModifieOpacité Modifies the opacity of an image (which means the alpha channel of the image). MyImage is Image = "Test.gif" MyImage is Image = "c:\test.png" // Reduces the opacity by 50% MyImage.ModifyOpacity(50) MyImage.SaveImagePNG("c:\test2.png") IMG_MyDrawing = MyImage
Syntax
ModifyOpacity(<Image> , <Factor>)
<Image>: Image variable Name of the Image variable to be used. <Factor>: Real Factor for modifying the opacity, included between 0.0 and 100.0. This factor will be applied to the alpha channel of the image. Remarks This function can only be used with the images containing an alpha channel (32 bpp).
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|