CustomBitmapDataConfigRowGetPColorF Property
Gets or sets a delegate that can retrieve a pixel of a row in the custom bitmap data as a
PColorF value.
An image processing operation may prefer this delegate if
Prefers128BitColors and
HasPremultipliedAlpha
are 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: 10.0.0-rc.1
public Func<ICustomBitmapDataRow, int, PColorF>? RowGetPColorF { get; set; }
Public Property RowGetPColorF As Func(Of ICustomBitmapDataRow, Integer, PColorF)
Get
Set
public:
property Func<ICustomBitmapDataRow^, int, PColorF>^ RowGetPColorF {
Func<ICustomBitmapDataRow^, int, PColorF>^ get ();
void set (Func<ICustomBitmapDataRow^, int, PColorF>^ value);
}
member RowGetPColorF : Func<ICustomBitmapDataRow, int, PColorF> with get, set
Property Value
FuncICustomBitmapDataRow,
Int32,
PColorF