What happened to the 'openImage' method in IFormatReader?
The 'openImage' method is now in loci.formats.gui.BufferedImageReader. If 'reader' is the IFormatReader object that you are currently using to open images, then all you need to do is add this line of code after declaring 'reader':
BufferedImageReader imageReader = new BufferedImageReader(reader);
You will then need to replace 'reader' with 'imageReader' in subsequent lines of code.

