MATLAB: Png to tif convertion

png

how can i convert png image into tif image

Best Answer

I=imread('image.png');
imwrite(I,'image.tif','tif');