HOW TO CONVERT A PNG IMAGE IN TO A EPS IMAGE?
8 views (last 30 days)
Show older comments
HI ! how can i convert a png image in a eps image?
0 Comments
Answers (1)
Akira Agata
on 19 Apr 2019
Like this?
% Read png file
I = imread('peppers.png');
% Show the image
figure
imshow(I,'Border','tight')
% Save as eps file
saveas(gcf,'peppers','epsc')
1 Comment
See Also
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!