Examples of IPTCTagInfo


Examples of com.lightcrafts.image.metadata.IPTCTagInfo

     * @param isChangeable Whether the tag is user-changeable.
     * @param tagAttributes A bit-mask specifying the tag attributes.
     */
    private static void add( int id, String name, ImageMetaType type,
                             boolean isChangeable, int tagAttributes ) {
        final IPTCTagInfo tagInfo =
            new IPTCTagInfo( id, name, type, isChangeable, tagAttributes );
        m_tagsByID.put( id, tagInfo );
        m_tagsByName.put( name, tagInfo );
    }
View Full Code Here

Examples of com.lightcrafts.image.metadata.IPTCTagInfo

     * @param id The tag ID.
     * @param name The XMP name.
     * @see #add(int,String,ImageMetaType,boolean,int)
     */
    private static void xmp( int id, String name ) {
        final IPTCTagInfo iimTagInfo = m_tagsByID.get( id );
        final IPTCTagInfo xmpTagInfo = new IPTCTagInfo(
            id, name, iimTagInfo.getType(), iimTagInfo.isChangeable(),
            iimTagInfo.getAttributes()
        );
        m_tagsByID.put( id, xmpTagInfo );
        m_tagsByName.put( name, iimTagInfo );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.