You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Piotr Czajka (JIRA)" <ji...@apache.org> on 2012/10/19 13:38:12 UTC

[jira] [Created] (IMAGING-96) Full exif tag description ?

Piotr Czajka created IMAGING-96:
-----------------------------------

             Summary: 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

[jira] [Resolved] (IMAGING-96) Full exif tag description ?

Posted by "Sebb (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/IMAGING-96?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sebb resolved IMAGING-96.
-------------------------

    Resolution: Not A Problem

Please use the Commons User mailing list for queries about Commons components in future. Thanks.
                
> Full exif tag description  ?
> ----------------------------
>
>                 Key: IMAGING-96
>                 URL: https://issues.apache.org/jira/browse/IMAGING-96
>             Project: Commons Imaging
>          Issue Type: Task
>          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

[jira] [Closed] (IMAGING-96) Full exif tag description ?

Posted by "Sebb (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/IMAGING-96?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sebb closed IMAGING-96.
-----------------------

    
> Full exif tag description  ?
> ----------------------------
>
>                 Key: IMAGING-96
>                 URL: https://issues.apache.org/jira/browse/IMAGING-96
>             Project: Commons Imaging
>          Issue Type: Task
>          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

[jira] [Commented] (IMAGING-96) Full exif tag description ?

Posted by "Damjan Jovanovic (JIRA)" <ji...@apache.org>.
    [ 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