Too many arguments error when converting .tiff to .bmp
Show older comments
I am trying to convert .tiff image to .bmp using the code as below
A=imread('ref.tif'); B=imwrite(A,'ref.bmp');
However, it failed and show "too many arguments".
Any recommendation on solving this? Thank you.
3 Comments
Vanessa Phung
on 15 Nov 2017
Vanessa Phung
on 15 Nov 2017
Answers (2)
M
on 15 Nov 2017
I don't think that imwrite returns an output. It should be used as
imwrite(A,map,filename)
1 Comment
Vanessa Phung
on 15 Nov 2017
mounika
on 15 Nov 2017
Try this:
t = Tiff('ref.tiff','r');
imageData = read(t);
imwrite(imageData,'ref.bmp');
1 Comment
Vanessa Phung
on 15 Nov 2017
Categories
Find more on Convert Image Type in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!