Ejemplo n.º 1
0
 public static extern int WebPPictureHasTransparency(ref WebPPicture picture);
Ejemplo n.º 2
0
 public static extern int WebPPictureYUVAToARGB(ref WebPPicture picture);
Ejemplo n.º 3
0
 public static extern void WebPCleanupTransparentArea(ref WebPPicture picture);
Ejemplo n.º 4
0
 public static extern int WebPPictureImportBGRX(ref WebPPicture picture, [InAttribute()] IntPtr bgrx, int bgrx_stride);
Ejemplo n.º 5
0
 public static extern int WebPPictureARGBToYUVA(ref WebPPicture picture, WebPEncCSP colorspace);
Ejemplo n.º 6
0
 public static extern int WebPPictureInitInternal(ref WebPPicture param0, int param1);
Ejemplo n.º 7
0
 public static extern int WebPPictureImportRGBX(ref WebPPicture picture, [InAttribute()] IntPtr rgbx, int rgbx_stride);
Ejemplo n.º 8
0
 public static extern int WebPPictureView(ref WebPPicture src, int left, int top, int width, int height, ref WebPPicture dst);
Ejemplo n.º 9
0
 public static extern int WebPPictureIsView(ref WebPPicture picture);
Ejemplo n.º 10
0
 public static extern int WebPPictureDistortion(ref WebPPicture src, ref WebPPicture reference, int metric_type, ref float result);
Ejemplo n.º 11
0
 public static extern int WebPPictureCrop(ref WebPPicture picture, int left, int top, int width, int height);
Ejemplo n.º 12
0
 public static extern int WebPPictureCopy(ref WebPPicture src, ref WebPPicture dst);
Ejemplo n.º 13
0
 public static extern void WebPPictureFree(ref WebPPicture picture);
Ejemplo n.º 14
0
 public static extern int WebPPictureAlloc(ref WebPPicture picture);
Ejemplo n.º 15
0
 public static extern int WebPEncode(ref WebPConfig config, ref WebPPicture picture);
Ejemplo n.º 16
0
 public static extern int WebPPictureRescale(ref WebPPicture pic, int width, int height);
Ejemplo n.º 17
0
 /// <summary>
 /// Should always be called, to initialize the structure. Returns false in case
 /// of version mismatch. WebPPictureInit() must have succeeded before using the
 /// 'picture' object.
 /// Note that, by default, use_argb is false and colorspace is WEBP_YUV420.
 /// </summary>
 /// <param name="picture"></param>
 /// <returns></returns>
 public static int WebPPictureInit(ref WebPPicture picture)
 {
     return(Decode.WebPPictureInitInternal(ref picture, WEBP_ENCODER_ABI_VERSION));
 }
Ejemplo n.º 18
0
 public static extern int WebPMemoryWrite([InAttribute()] IntPtr data, UIntPtr data_size, ref WebPPicture picture);