←Select platform

TransparentColor Property

Summary
Gets or sets the transparent color used when painting this image.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public RasterColor TransparentColor { get; set; } 
@property (nonatomic, copy) LTRasterColor *transparentColor 
public RasterColor getTransparentColor(); 
public void setTransparentColor( 
   RasterColor rasterColor 
); 
public: 
property RasterColor TransparentColor { 
   RasterColor get(); 
   void set (    RasterColor ); 
} 
TransparentColor # get and set (RasterImage) 

Property Value

The transparent color used when painting this image.

Remarks

The TransparentColor of a RasterImage is used when the Transparent property value is set to true.

Note, transparent paint does not work with RasterPaintEngine.Gdi. For more information, refer to RasterPaintProperties.

If this RasterImage has a BitsPerPixel value of 8 or less, then the image has a palette. For palettized images, the value of the TransparentColor can be an RGB value or a palette index.

To set a palette index as the transparent color, use the RasterColor.FromPaletteIndex method.

If the color passed is a true RGB value(The value of see RasterColor.IsPaletteIndex is false and the image has a palette, then this RasterImage object will call GetTrueColorValue on the TransparentColor to translate it into the nearest palette index entry before using it to determine the actual transparent color in the image when painting.

For more information, refer to PNG Files and Transparency.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing; 
using Leadtools.ImageProcessing.Core; 
using Leadtools.ImageProcessing.Color; 
using Leadtools.Dicom; 
using Leadtools.Drawing; 
using Leadtools.Controls; 
using Leadtools.Svg; 
 
 
public void TransparentColorExample() 
{ 
	RasterCodecs codecs = new RasterCodecs(); 
 
	string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Ocr1.tif"); 
	string destFileName = Path.Combine(LEAD_VARS.ImagesDir, "Ocr1_Transparent.gif"); 
 
	// Load the image 
	RasterImage image = codecs.Load(srcFileName); 
 
	// Change the image's palette to be Red and Blue 
	RasterColor[] redBluePalette = new RasterColor[2]; 
	redBluePalette[0] = RasterColor.FromKnownColor(RasterKnownColor.Red); 
	redBluePalette[1] = RasterColor.FromKnownColor(RasterKnownColor.Blue); 
	image.SetPalette(redBluePalette, 0, 2); 
 
	// make red the transparent color 
	image.Transparent = true; 
	image.TransparentColor = redBluePalette[0]; 
 
	// Save the image 
	codecs.Save(image, destFileName, RasterImageFormat.Gif, 8); 
 
	// Now load Ocr1_Transparent.gif in Internet Explorer. 
	// Notice how red is treated as a transparent color. 
	// You should get Blue text on a white background 
	//    (if IE's background color is white). 
 
	image.Dispose(); 
	codecs.Dispose(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.5.16
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.