23-03-23 06:28 PM
Hello, sorry for the inconvenience, by chance has someone handled .tif files or generated an object for this? since i need to open tif files and identify how many images it contains i would really appreciate the help
24-03-23 10:50 AM
Hi,
You can use a code stage to count the number of pages in the tif file.
Image Tiff = Image.FromFile(filePath);
pageCount = Tiff.GetFrameCount(System.Drawing.Imaging.FrameDimension.Page);
Tiff.Dispose();