Usage:
gallerygenerator [options]
Options available:
-v[ersion] Print version information.
-h[elp] Print this help information.
-tw <int> Width of bounding box for thumbnails.
Default: 224
-th <int> Height of bounding box for thumbnails.
Default: 168
-iw <int> Width of bounding box for intermediate images.
Default: 800
-ih <int> Height of bounding box for intermediate images.
Default: 600
-tq <int> JPEG quality setting for thumbnail image compression.
Default: 85
-iq <int> JPEG quality setting for intermediate image compression.
Default: 85
-it <string> Intermediate Image Page template filename.
Defaults to an example template stored in the jar file.
-tt <string> Thumbnail Page template filename.
Defaults to an example template stored in the jar file.
-is Include a copy of source images in gallery directory.
-pp <string> Prefix of thumbnail page filenames.
Default: "index".
For a gallery with n pages there will be files named:
"index.html" and "index2.html" through "indexn.html".
-ipp <int> Number of thumbnail images per top level gallery page.
Setting this to 0 will result in a single top level gallery
page that contains all images.
-nig Skip image generation. Sizes for images NOT generated
previously will be 0x0 as provided to the html generation
templates.
-nhg Skip html generation.
-cdc <string> Path of directory the contents of which to copy into the
gallery directory.
-owc Overwrite files in gallery directory with files from directory
specified in previous option.
| Variable/Object Name | Class/Type |
Description |
| thumbnailImageFilenames |
ArrayList |
Contains the image filenames for all thumbnails that were generated as part of this gallery. |
| thumbnailImageURI |
String |
Contains the relative URI to the directory containing
the thumbnail images, with a trailing / |
| thumbnailImageDims |
ArrayList |
Contains ArrayList objects each of which containsat
index 0 the width (as an Integer) of the corresponding thumbnail image,and
at index 1 the height (as an Integer) of the corresponding thumbnailimage. |
| intermediatePageFilenames |
ArrayList |
Contains the page filenames for all intermediate image
HTML files generated as part of this gallery. |
| intermediatePageURI |
String |
Contains the relative URI to the directory containing
the intermediate image HTML files, with a trailing / |
| sourcesIncluded |
Boolean |
True if the user specified source images to be included
in the gallery generator's output. |
| sourceImageFilenames |
ArrayList |
Contains the image filenames for all source images
included as part of this gallery. |
| sourceImageURI |
String |
Contains the relative URI to the directory containing
the source images, with a trailing / |
| galleryName |
String | The name of the gallery the user specified on thecommand
line. |
| startIndex |
Integer |
The first index number in the ArrayLists of information
for which this invocation of the thumbnail template is responsible for generating
HTML output. |
| stopIndex |
Integer |
The last index number in the ArrayLists of information
for which this invocation of the thumbnail template is reponsible for generating
HTML output. |
| currentPageNum |
Integer |
The number of the thumbnail index page for which this
invocation of the thumbnail template is responsible for generating HTML output. |
| totalPages |
Integer |
The total number of thumbnail index pages that will
be generated. |
| pagePrefix |
String |
The prefix used to derive thumbnail index filenames.
The full filename is the prefix appended with the current page number, appended
with the suffix. When the page number is 1 it is not included in the
filename. |
| pageSuffix |
String |
The suffix used to derive thumbnail index filenames.
The full filename is the prefix appended with the current page number, appended
with the suffix. When the page number is 1 it is not included in the
filename. |
| Variable/Object Name | Class/Type |
Description |
| intermediateImageURL |
String |
Contains the relative URL to the intermediate image for which this invocation of the intermediate image template is responsible for generating HTML output. |
| intermediateImageDims |
ArrayList |
Contains ArrayList objects each of which containsat
index 0 the width (as an Integer) of the corresponding intermediate image,
and at index 1 the height (as an Integer) of the corresponding intermediate
image. |
| intermediatePageFilenames |
ArrayList |
Contains the page filenames for all intermediate image
HTML files generated as part of this gallery. |
| currentIndex |
Integer |
Contains the index to all intermediate image information
arrays that corresponds to the intermediate image for which this invocation
of the intermediate image template is responsible for generating HTML output. |
| sourcesIncluded |
Boolean |
True if the user specified source images to be included
in the gallery generator's output. |
| sourceImageFilenames |
ArrayList |
Contains the image filenames for all source images
included as part of this gallery. |
| sourceImageURI |
String |
Contains the relative URI to the directory containing
the source images, with a trailing / |
| galleryName |
String | Contains the name of the gallery the user specified
on thecommand line. |
| currentThumbnailURL |
String |
Contains the relative URL to the thumbnail index page responsible for rendering HTML output for the thumbnail that correspondsto the intermediate image for this invocation of the intermediate image template. |