FIBITMAP Structure

FreeImage.NET

FIBITMAP Structure
The FIBITMAP structure is a handle to a FreeImage bimtap.

Namespace: FreeImageAPI
Assembly: FreeImageNET (in FreeImageNET.dll) Version: 3.17.0.4 (3.17.0)
Syntax
C#
[SerializableAttribute]
public struct FIBITMAP : IComparable, IComparable<FIBITMAP>, 
	IEquatable<FIBITMAP>

The FIBITMAP type exposes the following members.

Properties
  NameDescription
Public propertyIsNull
Gets whether the handle is a null or not.
Top
Methods
  NameDescription
Public methodCompareTo(Object)
Compares this instance with a specified Object.
Public methodCompareTo(FIBITMAP)
Compares this instance with a specified FIBITMAP object.
Public methodEquals(Object)
Determines whether the specified Object is equal to the current Object.
(Overrides ValueTypeEquals(Object).)
Public methodEquals(FIBITMAP)
Indicates whether the current object is equal to another object of the same type.
Public methodGetHashCode
Returns a hash code for this FIBITMAP structure.
(Overrides ValueTypeGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodSetNull
Sets the handle to null.
Public methodToString
Converts the numeric value of the FIBITMAP object to its equivalent string representation.
(Overrides ValueTypeToString.)
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Tests whether two specified FIBITMAP structures are equivalent.
Public operatorStatic memberInequality
Tests whether two specified FIBITMAP structures are different.
Top
Fields
  NameDescription
Public fieldStatic memberZero
A read-only field that represents a handle that has been initialized to zero.
Top
Remarks
The handle represented by a FIBITBAP structure provides access to either a singlepage bitmap or exactly one page of a multipage bitmap.
See Also