Return-Path: X-Original-To: apmail-commons-issues-archive@minotaur.apache.org Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 99437D3BD for ; Wed, 24 Oct 2012 05:00:22 +0000 (UTC) Received: (qmail 97481 invoked by uid 500); 24 Oct 2012 05:00:18 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 96918 invoked by uid 500); 24 Oct 2012 05:00:16 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 96826 invoked by uid 99); 24 Oct 2012 05:00:12 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 24 Oct 2012 05:00:12 +0000 Date: Wed, 24 Oct 2012 05:00:12 +0000 (UTC) From: "Damjan Jovanovic (JIRA)" To: issues@commons.apache.org Message-ID: <633379888.20189.1351054812553.JavaMail.jiratomcat@arcas> In-Reply-To: <802173662.472.1350646692186.JavaMail.jiratomcat@arcas> Subject: [jira] [Commented] (IMAGING-96) Full exif tag description ? MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/IMAGING-96?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13482963#comment-13482963 ] Damjan Jovanovic commented on IMAGING-96: ----------------------------------------- Through what API? You can already do this: {code} TiffDirectory tiffDirectory = ... int exposureProgram = tiffDirectory.getSingleFieldValue(ExifTagConstants.EXIF_TAG_EXPOSURE_PROGRAM); switch (exposureProgram) { case EXPOSURE_PROGRAM_VALUE_MANUAL: return "manual"; } {code} > Full exif tag description ? > ---------------------------- > > Key: IMAGING-96 > URL: https://issues.apache.org/jira/browse/IMAGING-96 > Project: Commons Imaging > Issue Type: Question > Components: Format: JPEG > Reporter: Piotr Czajka > > Is it possible to get a full exif tag description ? > e.g. > Simple output from Imaging: > //... > ExposureProgram : 1 > //... > In exif tagg spec. I found : > ExposureProgram > The specification defines these values: > 0 = Not defined > 1 = Manual > 2 = Normal program > 3 = Aperture priority > 4 = Shutter priority > 5 = Creative program (biased toward depth of field) > 6 = Action program (biased toward fast shutter speed) > 7 = Portrait mode (for closeup photos with the background out of focus) > 8 = Landscape mode (for landscape photos with the background in focus) > Can I receive description in that form : > ExposureProgram : Manual ? -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira