IDL's READ_TIFF and READ_JPEG routines are already compiled in an IDL session. To use them, you just call them using the poper syntax. There is no need to compile them, and they are not available in the form of .pro files to be compiled. The syntax is different for the two routines, because READ_TIFF is a function, while READ_JPEG is a procedure.
To call READ_TIFF, you would use syntax like this:
image1=read_tiff("C:\Program Files\Exelis\IDL84\examples\data\boulder.tif")
To call READ_JPEG, you would use syntax like this:
read_jpeg, "C:\Program Files\Exelis\IDL84\examples\data\Clouds.jpg", image2
Regards,
Peg
Exelis VIS
|