MATLAB: I want to store image in other format.how can i do that?

convertfigureimagesave

I want to convert an image into lossless jpeg and lossy jpeg. how can i do this?? is it possible in matlab or suggest me any software to download not online editors.thanks in advance

Best Answer

Meanwhile,
imwrite( imread('YourTiffFile.tif'), 'YourLossyJpegFile.jpg', 'jpg' );
Related Question