0
|
1 # -*- coding: UTF-8 -*-
|
|
2
|
|
3 # The maximum dimension the output file should have. If either the
|
|
4 # width or the height exceeds this number, the image will be scaled
|
|
5 # (preserving its aspect ratio) so that the maximum dimension is equal
|
|
6 # to the the following number.
|
|
7 maxDimension=640
|
|
8
|
|
9 # The quality of the output JPEG file (a JPEG is always produced), as
|
|
10 # an integer from 0 to 100
|
|
11 outputQuality=85
|
|
12
|
|
13 # This is added to the name part of the file to create the default
|
|
14 # output file name.
|
|
15 outputSuffix=_scaled
|
|
16
|
|
17 # The directory where files will be written, if outputToInputDir is not
|
|
18 # true. If empty, output to the home directory. If this starts with a
|
|
19 # tilde, the tilde will be replaced with the home directory.
|
|
20 outputTo=
|
|
21
|
|
22 # If true, output files get created by default in the same place the
|
|
23 # input file was loaded from.
|
|
24 outputToInputDir=true
|