Miguel created TIKA-1538:
----------------------------
Summary: Wrong mimetype detection
Key: TIKA-1538
URL: https://issues.apache.org/jira/browse/TIKA-1538
Project: Tika
Issue Type: Bug
Affects Versions: 1.7
Reporter: Miguel
[SCENARIO]
- Working on a "supposed to be a valid JPEG file", which is correctly detected
and treated by a browser, etc. (Detection works well for almost all other
checked images).
- Using tika-app-1.7.jar
- Java code snippet:
Tika tikaObject = new Tika();
...
// image is a byte[] containing the JPEG file
String contentTypeTika = tikaObject.detect( image );
[RESULT]
detected mimetype is "application/gzip" ("application/x-gzip" if using
tika-app-1.4.jar or tika-app-1.5.jar)
[EXPECTED]
"image/jpeg"
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)