From: Enrico on
I have the following

f=figure()
imagesc(img)
colormap(gray)
axis off
text(50,50,'test','Color','White')
saveas(gcf,'image.jpg')

I can see the figure but the text is missing.

If I take out 'colormap' OR 'axis off', the text is saved. if BOTH are there, then it doesnt work.

Is there something special I need to do?