Package imagizer
[hide private]
[frames] | no frames]

Source Code for Package imagizer

 1  # coding: utf8 
 2  # 
 3  # 
 4  #******************************************************************************\ 
 5  #* $Source$ 
 6  #* $Id$ 
 7  #* 
 8  #* Copyright (C) 2006 - 2011,  Jérôme Kieffer <kieffer@terre-adelie.org> 
 9  #* Conception : Jérôme KIEFFER, Mickael Profeta & Isabelle Letard 
10  #* Licence GPL v2 
11  #* 
12  #* This program is free software; you can redistribute it and/or modify 
13  #* it under the terms of the GNU General Public License as published by 
14  #* the Free Software Foundation; either version 2 of the License, or 
15  #* (at your option) any later version. 
16  #* 
17  #* This program is distributed in the hope that it will be useful, 
18  #* but WITHOUT ANY WARRANTY; without even the implied warranty of 
19  #* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
20  #* GNU General Public License for more details. 
21  #* 
22  #* You should have received a copy of the GNU General Public License 
23  #* along with this program; if not, write to the Free Software 
24  #* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 
25  #* 
26  #*****************************************************************************/ 
27   
28  """ 
29  General library used by selector and generator. 
30  It handles images, progress bars and configuration file. 
31  """ 
32   
33  __author__ = "Jérôme Kieffer" 
34  __contact__ = "jerome.kieffer@terre-adelie.org" 
35  __version__ = "1.1.0" 
36  from imagizer import * #I know this is ugly ! 
37  from config import Config 
38  from exiftran import Exiftran 
39  from imagecache import ImageCache 
40  from parser import AttrFile 
41  from signals import Signal 
42