예제 #1
0
파일: Pix.cs 프로젝트: unitay/leptonica.net
 /// <summary>
 /// Convert Pix to Bitmap
 /// </summary>
 /// <param name="pixs">Pix Source</param>
 /// <param name="includeAlpha">Should Alpha Channel Be Included</param>
 /// <returns></returns>
 public static Bitmap ToBitmap(this Pix pixs, bool includeAlpha = false)
 {
     return(Pix.Convert(pixs, includeAlpha));
 }