Matlab imwrite function does not work for saving EPS format (though some comments on internet say that it is possible by sending the color values to a colormap). One very simple solution is using;
im = imread('image.png');
figure, imshow(im);
print -depsc image2.eps
im = imread('image.png');
figure, imshow(im);
print -depsc image2.eps
No comments:
Post a Comment