SKPixelSerializer.Create Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Create(Func<SKPixmap,SKData>) |
Create a new pixel serializer using the specified delegate to encode the pixel data. |
Create(Func<IntPtr,IntPtr,Boolean>, Func<SKPixmap,SKData>) |
Create a new pixel serializer using the specified delegate to encode the pixel data. |
Create(Func<SKPixmap,SKData>)
Create a new pixel serializer using the specified delegate to encode the pixel data.
public static SkiaSharp.SKPixelSerializer Create (Func<SkiaSharp.SKPixmap,SkiaSharp.SKData> onEncode);
Parameters
Returns
Returns an instance of the SKPixelSerializer.
Applies to
Create(Func<IntPtr,IntPtr,Boolean>, Func<SKPixmap,SKData>)
Create a new pixel serializer using the specified delegate to encode the pixel data.
public static SkiaSharp.SKPixelSerializer Create (Func<IntPtr,IntPtr,bool> onUseEncodedData, Func<SkiaSharp.SKPixmap,SkiaSharp.SKData> onEncode);
Parameters
The delegate to use to determine whether to use the previous encoded data, or to encode another version.
Returns
Returns an instance of the SKPixelSerializer.
Applies to
SkiaSharp