Package it.geosolutions.imageio.plugins.jp2k.box

Examples of it.geosolutions.imageio.plugins.jp2k.box.UUIDBoxMetadataNode


        //
        // Looking for the UUIDBoxMetadataNode
        //
        // //
        final List<IIOMetadataNode> uuidBoxMetadataNodes = ((JP2KStreamMetadata) metadata).searchOccurrencesNode(UUIDBox.BOX_TYPE);
        UUIDBoxMetadataNode geoJP2uuid = null;
        UUIDBoxMetadataNode worldBoxuuid = null;
        if (uuidBoxMetadataNodes != null && !uuidBoxMetadataNodes.isEmpty()){
          for (IIOMetadataNode node: uuidBoxMetadataNodes){
            if (node instanceof UUIDBoxMetadataNode) {
                    final UUIDBoxMetadataNode uuid = (UUIDBoxMetadataNode) node;
                    final byte[] id = uuid.getUuid();
                    if (isGeoJP2(id)) {
                       geoJP2uuid = uuid;
                       continue;
                    }
                   
View Full Code Here

TOP

Related Classes of it.geosolutions.imageio.plugins.jp2k.box.UUIDBoxMetadataNode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.