;
; ┌──────────────────────────────────────┐
; │ G F X C h e c k │
; │ GIF/JPEG Graphics Checking Utility │
; └──────────────────────────────────────┘
;
;
; Version 1.00
; (c) Copyright 1995 - Stacy Smith
;
;
; *** Beginning of GFXCheck configuration file ***
;
; The path/filename of the log file for GFXCheck to record its activities,
; and the mode of logging desired. Comment out if you don't want disk
; logging. Fair warning: if you want support, don't come to me without
; a log file... <g>
LOG_FILE c:\gfxchk\gfxchk.log
LOG_MODE verbose
;
; The errorlevels that GFXCheck is to return to the operating system when
; exiting. If no graphic file(s) were found to be defective, the
; GOOD_ERRLEV value is returned, while the FAIL_ERRLEV is returned when
; a defective file is detected. Valid values are 0 to 255.
GOOD_ERRLEV 0
FAIL_ERRLEV 1
;
; GFXCheck will fail a non-graphic (GIF or JPEG) file as an unknown format.
; Setting this parameter to NO will prevent this. This can be useful for
; third party utilities that pass an entire directory of various files to
; file checking programs.
FAIL_UNKNOWN no
;
; This parameter defines how GFXCheck dispositions defective graphic files.
; Three options are available: NONE (if GFXCheck is to leave the defective
; file alone), RENAME (if GFXCheck is the rename the file to .BAD) or
; DELETE (self-explanatory).
DISPOSITION rename
;
; With this option enabled, GFXCheck will trim any extraneous bytes from
; the end of the graphic file, saving disk space and easing the job of
; duplication checking software.
TRIM_EOF yes
;
; The minimum acceptable image resolution GFXCheck is to accept for graphic
; files in the format "WIDTH x HEIGHT x COLORS". If an element is set to
; 0, GFXCheck will not use that particular element in the evaluation. Setting
; to 0x0x0 will disable the image resolution check.
GIF_MIN_RES 640 x 480 x 256
JPEG_MIN_RES 640 x 480 x 256
;
; If GFXCheck is to accept GIF files that have been compressed with GIFLITE,
; set this to YES. Otherwise, set it to NO or comment out the line.
ALLOW_GIFLITE yes
;
; GFXCheck can update BBS directory listings with an information line for
; good GIF and/or JPEG files. The following lines define the format for
; the informational line using a number of @-macros as defined in the
; documentation. The last parameter defines where the inserted text will
; be placed, as an appended line (NEW_LINE) or on the first line (FIRST_LINE).
GIF_INFO_FMT [@WID@ x @HGT@ x @SCOL@]
JPEG_INFO_FMT [@WID@ x @HGT@ x @SCOL@]
INFO_POS new_line
;
; If GFXCheck is to update BBS directory listings with an information
; line, the following defines the format for secondary description lines
; by defining the column for the secondary desc character. The defaults,
; 32 and '|', are for PCBoard's default settings.
SEC_DESC_COL 32
SEC_DESC_CHAR |
;
; *** End of GFXCheck configuration file ***
;