Exemple #1
0
 /// <summary>
 /// Creates a new Page image list from the given Bitmap object.  Pages
 /// will be extracted into the Page image list if the source is multipage.
 /// </summary>
 /// <param name="image">The given Image object.</param>
 /// <param name="convertTo32Bit">Whether to coerce into a 32 bit</param>
 /// <returns>A new Page Image List</returns>
 public static List <PageImage> LoadImage(Image image, bool convertTo32Bit)
 {
     return(ImageUtility.InternalLoadImage(image, convertTo32Bit));
 }