Determines whether the file contains 8-bit grayscale image data + alpha.
public bool IsGray8Alpha { get; } Public ReadOnly Property IsGray8Alpha As Boolean public boolean IsGray8Alpha() public:property bool IsGray8Alpha {bool get();}
true if the file contains 8-bit grayscale image data + alpha; false, otherwise.
using Leadtools;using Leadtools.Codecs;using Leadtools.Examples;public void CodecsImageInfoIsPalette8AlphaExample(){string fileName = @"<TIF_FILE_PATH>";using (RasterCodecs codecs = new RasterCodecs()){CodecsImageInfo info = codecs.GetInformation(fileName, true);if (info.IsPalette8Alpha){/* These files might get loaded as 8-bit by default.* You can load them as 32-bit if you need the alpha information*/using (RasterImage image = codecs.Load(fileName, 32, CodecsLoadByteOrder.Bgr, 1, 1)){/* Do something with the bitmap */Console.WriteLine("BitsPerPixel = " + image.BitsPerPixel);}}}}
Imports LeadtoolsImports Leadtools.CodecsPublic Sub CodecsImageInfoIsPalette8AlphaExample()Dim fileName As String = "<TIF_FILE_PATH>"Using codecs As RasterCodecs = New RasterCodecs()Dim info As CodecsImageInfo = codecs.GetInformation(fileName, True)If info.IsPalette8Alpha Then' These files might get loaded as 8-bit by default.'* You can load them as 32-bit if you need the alpha information'Using image As RasterImage = codecs.Load(fileName, 32, CodecsLoadByteOrder.Bgr, 1, 1)' Do something with the bitmapConsole.WriteLine("BitsPerPixel = " & image.BitsPerPixel)End UsingEnd IfEnd UsingEnd Sub
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
