2

I am making a basic Tiff viewer and need to be able to select the page to be viewed. In Winforms I could use selectActiveFrame, so I was wondering if there is a WPF equivalent for this. Thanks!

EDIT: In winforms I used System.Drawing.Imaging.FrameDimension in the selectActiveFrame method if that helps at all.

Morgan Herlocker
  • 1,498
  • 4
  • 24
  • 42

1 Answers1

2

You can use the TiffBitmapDecoder class to load the image and then use the Frames property to access which tiff frame you like.

Andrei Pana
  • 4,484
  • 1
  • 26
  • 27