Yes you can make tiff files from catia V4 Files using the plot function !
It runs like that :
/ ----------------------------------------------------------------------
/ HEADER BLOCK DEFINITION
/ ----------------------------------------------------------------------
*BEGIN_HEADER
/ ------------------------------------------- 10 CHARACTERS DEVICE NAME
*NAME TIFF
/ -------------------------------- 45 CHARACTERS PLOTTING PANEL COMMENT
*COM TIFF 200 DPI
*TYP PRINTER
*END_HEADER
/ ----------------------------------------------------------------------
/ PARAMETERS BLOCK DEFINITION
/ ---------------------------------------------------------------------
*BEGIN_PARAM
/ --------------PLOTTING KEYWORDS (REFER TO CATPUB REFERENCE MANUAL)
*EXPORT TIFF
*RDY 200
*END_PARAM
/ ----------------------------------------------------------------------
/ EXECUTION BLOCK DEFINITION
/ ----------------------------------------------------------------------
*BEGIN_EXEC
if [ -s $CATOUT ] then
# qprt -P lp0 $CATOUT
cat $CATOUT > $HOME/toprint
else
echo " the file $CATOUT doesn't exist , check your traces"
fi
*END_EXEC
/ ----------------------------------------------------------------------
/ RUN-TIME BLOCK DEFINITION
/ ----------------------------------------------------------------------
*BEGIN_RTIME
CATOUT=$HOME/catout.tif
export CATOUT
*END_RTIME
The $HOME/toprint is the .tif file in 200 DPI
Stan