Package gov.nara.nwts.ftappImg.tags.ImageTags

Examples of gov.nara.nwts.ftappImg.tags.ImageTags.TAGTYPE


  }
 
  public GenericImageStats doJpgObject(String filekey, JpegExtractor jpegext, String tag) {
    String val = jpegext.getAttribute(tag);
    TAGLOC tiffloc = TAGLOC.JPG;
    TAGTYPE tagtype = TAGTYPE.JPG;
    NARAREQ narareq = NARAREQ.UNDECIDED;
    TAGCONTENT tagcontent = TAGCONTENT.UNDECIDED;
    DUP dupfield = DUP.NA;
    String name = tag;
View Full Code Here


    return new GenericImageStats(""+counter,filekey,tag,name, val,tiffloc,tagtype,narareq,tagcontent, dupfield);   
  }
  public GenericImageStats doTifObject(String filekey, TifExtractor tiffext, TIFFField tf) {
    String tag = "";
    TAGLOC tiffloc = TAGLOC.TAG;
    TAGTYPE tagtype = TAGTYPE.TIFF_TAG;
    NARAREQ narareq = NARAREQ.UNDECIDED;
    TAGCONTENT tagcontent = TAGCONTENT.UNDECIDED;
    DUP dupfield = DUP.NA;
    String path ="";
View Full Code Here

  public GenericImageStats doXMPObject(String filekey, XMPExtractor xmpex, XMPPropertyInfo xpi) {
    String tag = "";
    String val = "";
   
    TAGLOC tiffloc = TAGLOC.XMP;
    TAGTYPE tagtype = TAGTYPE.OTHER_XMP;
    NARAREQ narareq = NARAREQ.UNDECIDED;
    TAGCONTENT tagcontent = TAGCONTENT.UNDECIDED;
    DUP dupfield = DUP.NA;

    String[] path = new String[2];
View Full Code Here

TOP

Related Classes of gov.nara.nwts.ftappImg.tags.ImageTags.TAGTYPE

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.