Sanselan 0.97 - GIF Parser facilities return null values for xmp
----------------------------------------------------------------

                 Key: SANSELAN-18
                 URL: https://issues.apache.org/jira/browse/SANSELAN-18
             Project: Sanselan
          Issue Type: Bug
         Environment: Windows XP, JDK 1.5
            Reporter: Kelly Boettcher


When attempting to use both core Sanselan methods and GIFParser methods, 
attempts to retrieve XMP is resulting in null values. Example code below:

File file;
InputStream is;
byte[] b;

file = new File("C:/data/test.gif");
is = new FileInputStream(file);
b = new byte[is.available()];
is.read(b);
is.close();
                    
/* Testing the Sanselan getXMP */                   
String xmp = Sanselan.getXmpXml(file); // returns null
System.out.println(xmp);
                    
/* Testing the GIF image parser's xmp capabilities */
GifImageParser parser = new GifImageParser();
ByteSource bs = new ByteSourceArray(b);
String existingXMP = parser.getXmpXml(bs, null); // returns null
System.out.println(existingXMP);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to