source: extensions/jiwigo/trunk/src/main/java/fr/mael/jiwigo/transverse/util/MetadataExtractor.java @ 6821

Last change on this file since 6821 was 6821, checked in by mlg, 14 years ago

Premier commit. Actuellement, l'application gère :
-Listing des catégories
-Affichage des miniatures
-Ajout de commentaires
-gestion d'un cache pour ne pas télécharger les images plusieurs fois
-gestion d'un zoom dans le navigateur d'images
-navigateur d'images complètement refait, je viens de tester sur un grand écran, à priori, c'est beaucoup mieux
-meilleure gestion des exceptions, avec affichage de messages d'erreurs
-ajout d'un "logger" qui enregistre toutes les exceptions dans un fichier de log
-possibilité de ne pas mettre le "http://" dans l'écran de connexion
-gestion de transformations d'images dans le navigateur d'images : "flip" horizontal et vertical, rotations
-menu dans le navigateur d'images, qui permet d'effectuer toutes les actions, avec en plus, la possibilité d'imprimer une image

en cours d'implémentation : gestion des préférences de l'utilisateur. Actuellement, le fichier xml permettant d'écrire les préférences est géré,
il reste à faire un écran de gestion des préférences, avec un maximum d'options, afin que l'appli soit configurable.

File size: 2.9 KB
Line 
1package fr.mael.jiwigo.transverse.util;
2
3import java.io.File;
4
5import com.drew.imaging.jpeg.JpegMetadataReader;
6import com.drew.imaging.jpeg.JpegProcessingException;
7import com.drew.metadata.Directory;
8import com.drew.metadata.Metadata;
9import com.drew.metadata.exif.ExifDirectory;
10
11/**
12   Copyright (c) 2010, Mael
13   All rights reserved.
14
15   Redistribution and use in source and binary forms, with or without
16   modification, are permitted provided that the following conditions are met:
17    * Redistributions of source code must retain the above copyright
18      notice, this list of conditions and the following disclaimer.
19    * Redistributions in binary form must reproduce the above copyright
20      notice, this list of conditions and the following disclaimer in the
21      documentation and/or other materials provided with the distribution.
22    * Neither the name of jiwigo nor the
23      names of its contributors may be used to endorse or promote products
24      derived from this software without specific prior written permission.
25
26   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
27   ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
28   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
29   DISCLAIMED. IN NO EVENT SHALL Mael BE LIABLE FOR ANY
30   DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
31   (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
33   ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36   
37 * @author mael
38 * Classe d'extraction des metadonnees exif d'une image
39 */
40public class MetadataExtractor {
41    /**
42     * Logger
43     */
44    public static final org.apache.commons.logging.Log LOG = org.apache.commons.logging.LogFactory
45            .getLog(MetadataExtractor.class);
46    private String filePath;
47    private String auteur;
48
49    public MetadataExtractor(String filePath) {
50        this.filePath = filePath;
51        File jpegFile = new File(filePath);
52        try {
53            Metadata metadata = JpegMetadataReader.readMetadata(jpegFile);
54            Directory exifdir = metadata.getDirectory(ExifDirectory.class);
55            //      Directory iptcdir = metadata.getDirectory(IptcDirectory.class);
56            String winauthor = exifdir.getString(ExifDirectory.TAG_WIN_AUTHOR);
57            String artist = exifdir.getString(ExifDirectory.TAG_ARTIST);
58            //String iptcauthor = iptcdir.getString(IptcDirectory.TAG_WRITER);
59            if (winauthor != null) {
60                this.auteur = winauthor;
61            }
62            if (artist != null) {
63                this.auteur = artist;
64            }
65        } catch (JpegProcessingException e) {
66        }
67    }
68
69    /**
70     * @return the auteur
71     */
72    public String getAuteur() {
73        return auteur;
74    }
75
76}
Note: See TracBrowser for help on using the repository browser.