home *** CD-ROM | disk | FTP | other *** search
- /* Pic TO JPEG COMPRESSOR v1.0 [03-jan-96] for Directory Opus 5
- By Christophe NOWAK
-
- Need the JPEGVxBin Package with cjpeg and djpeg
- ilbmtoppm needed for IFF Pictures.
- pcxtoppm needed for PCX Pictures.
-
- TODO : Support of PhotoCD and other formats
-
- */
-
- parse arg portname tmpdir option .
-
- options results
- if portname='' then
- portname='DOPUS.1'
- address value portname
-
- lister query source
- if rc>0 then do
- dopus request '"Error - No source files" ok'
- call end_script
- end
-
- parse var result handle .
-
- lister set handle busy on
-
- lister query handle path
- if rc>0 then
- call end_script
- chemin=result
-
- lister query handle selfiles stem files.
-
- if files.count=0 then do
- dopus request '"Error - No source files" ok'
- call end_script
- end
-
- dopus getstring '"Enter Compression Quality" 3 "" Ok'
- comp_quality=RESULT
- if LENGTH(comp_quality)=3 then do
- dopus request '"Error - Quality must be < 100" ok'
- call end_script
- end
-
- lister set handle progress files.count 'Compressing Pictures...'
- lister set handle title 'Compressing Pictures...'
- lister refresh handle full
-
- do i=0 to files.count-1
- lister query handle abort
- if result then
- call end_script
-
- lister set handle progress count i+1
- lister set handle progress name files.i
- lister query handle entry files.i stem fileinfo.
-
- workfile='"'chemin||fileinfo.name'"'
- if tmpdir=''|tmpdir='""' then
- tmpfile='"'chemin||fileinfo.name||.tmp'"'
- else tmpfile='"'tmpdir||fileinfo.name||.tmp'"'
-
- ext=reverse(fileinfo.name)
- parse var ext ext '.'
- ext=upper(reverse(ext))
-
- if ext='JPG'|ext='JPEG'|ext='JFIF' then do
- destfile='"'chemin||fileinfo.name||.jpg'"'
- address command 'djpeg -outfile' tmpfile workfile
- call Compress_File
- end
-
- if ext='GIF'|ext='TGA'|ext='TARGA'|ext='PPM'|ext='PBM' then do
- parse var fileinfo.name truncfile '.'
- destfile='"'chemin||truncfile||.jpg'"'
- address command 'cjpeg -optimize -quality' comp_quality option workfile '>'destfile
- end
-
- if ext='IFF'|ext='ILBM' then do
- parse var fileinfo.name truncfile '.'
- destfile='"'chemin||truncfile||.jpg'"'
- address command 'ilbmtoppm' workfile '>'tmpfile
- call Compress_File
- end
-
- if ext='PCX' then do
- parse var fileinfo.name truncfile '.'
- destfile='"'chemin||truncfile||.jpg'"'
- address command 'pcxtoppm' workfile '>'tmpfile
- call Compress_File
- end
-
- lister select handle '"'fileinfo.name'"' off
- lister refresh handle full
- end
-
- call end_script
-
- Compress_File:
- address command 'cjpeg -optimize -quality' comp_quality option tmpfile '>'destfile
- address command 'delete' tmpfile
- return
-
- Error:
- dopus request '"Error in command - Sorry" ok'
-
- end_script:
- lister set handle title
- lister refresh handle full
- lister set handle busy off
- EXIT
-