CustomBitmapDataConfigRowGetColorF Property
Gets or sets a delegate that can retrieve a pixel of a row in the custom bitmap data as a
ColorF value.
An image processing operation may prefer this delegate if
Prefers128BitColors is set
in
PixelFormat. If this property is not set, the other delegates tried to be used as a fallback.
Make sure you access the row content via the
ICustomBitmapDataRow parameter of the delegate.
Default value:
.
Namespace: KGySoft.Drawing.ImagingAssembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 9.1.1
public Func<ICustomBitmapDataRow, int, ColorF>? RowGetColorF { get; set; }
Public Property RowGetColorF As Func(Of ICustomBitmapDataRow, Integer, ColorF)
Get
Set
public:
property Func<ICustomBitmapDataRow^, int, ColorF>^ RowGetColorF {
Func<ICustomBitmapDataRow^, int, ColorF>^ get ();
void set (Func<ICustomBitmapDataRow^, int, ColorF>^ value);
}
member RowGetColorF : Func<ICustomBitmapDataRow, int, ColorF> with get, set
Property Value
FuncICustomBitmapDataRow,
Int32,
ColorF