*/
public DvdCover() {
menuoptions = MENU_EXECUTE | MENU_EXECUTE_SHOW | MENU_EXECUTE_PRINT;
arguments.add(new FileArgument(this, "destfile", "The file to which the PDF has to be written", true, new PdfFilter()));
arguments.add(new StringArgument(this, "title", "The title of the DVD"));
arguments.add(new ColorArgument(this, "backgroundcolor", "The backgroundcolor of the DVD Cover (for instance 0xFFFFFF)"));
arguments.add(new ImageArgument(this, "front", "The front image of the DVD Cover"));
arguments.add(new ImageArgument(this, "back", "The back image of the DVD Cover"));
arguments.add(new ImageArgument(this, "side", "The side image of the DVD Cover"));
}