Search in sources :

Example 1 with UUIDListBox

use of com.sun.media.imageioimpl.plugins.jpeg2000.UUIDListBox in project bioformats by openmicroscopy.

the class FileFormatReader method readUUIDListBox.

/**
 * This method reads the contents of the UUID List box
 */
public void readUUIDListBox(int length) throws IOException {
    if (metadata != null) {
        byte[] data = new byte[length];
        in.readFully(data, 0, length);
        metadata.addNode(new UUIDListBox(data));
    }
}
Also used : UUIDListBox(com.sun.media.imageioimpl.plugins.jpeg2000.UUIDListBox)

Example 2 with UUIDListBox

use of com.sun.media.imageioimpl.plugins.jpeg2000.UUIDListBox in project bioformats by ome.

the class FileFormatReader method readUUIDListBox.

/**
 * This method reads the contents of the UUID List box
 */
public void readUUIDListBox(int length) throws IOException {
    if (metadata != null) {
        byte[] data = new byte[length];
        in.readFully(data, 0, length);
        metadata.addNode(new UUIDListBox(data));
    }
}
Also used : UUIDListBox(com.sun.media.imageioimpl.plugins.jpeg2000.UUIDListBox)

Aggregations

UUIDListBox (com.sun.media.imageioimpl.plugins.jpeg2000.UUIDListBox)2