Package org.apache.commons.imaging.formats.jpeg.iptc

Examples of org.apache.commons.imaging.formats.jpeg.iptc.PhotoshopApp13Data


        if ((segments == null) || (segments.isEmpty())) {
            return null;
        }

        PhotoshopApp13Data photoshopApp13Data = null;

        for (Segment s : segments) {
            final App13Segment segment = (App13Segment) s;

            final PhotoshopApp13Data data = segment.parsePhotoshopSegment(params);
            if (data != null && photoshopApp13Data != null) {
                throw new ImageReadException(
                        "Jpeg contains more than one Photoshop App13 segment.");
            }
View Full Code Here

TOP

Related Classes of org.apache.commons.imaging.formats.jpeg.iptc.PhotoshopApp13Data

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.