Image Conversion from TIFF to JPEG Within JMP?
Is there a way to convert an image type in a jmp script prior to adding it in an image column in a table? I have a bunch of .tif files which reside in a .zip file. I can read the data from a specific image into a table using a script like this:dt = New Table( "test", New Column( "Image", Expression ) );
dt << Add Rows( 1 );
za = Open( "tif_library", "zip" );
dat = za << Read( "tif_file_n.tif", ...
saitcopuroglu