Open
Description
I got these results using phototest.tif from the console example project.
Code:
var converter = new BitmapToPixConverter();
foreach (var rect in splitResults.Regions)
{
using (var cloneBmp = bmp.Clone(rect, bmp.PixelFormat))
{
pixList.Add(converter.Convert(cloneBmp));
}
}
After converter.Convert() on "phototest.tif":
Made by saving the cloned bitmap before converting to pix:
Rectangle from main image: {X = 36 Y = 92 Width = 582 Height = 92}
PixelFormat passed by bmp.PixelFormat: Format1bppIndexed
Cloned bitmap after converting to pix, note that it is the same size as the above image, it has a white area on the right:
Activity