HOW TO CONVERT A PNG IMAGE IN TO A EPS IMAGE?

11 views (last 30 days)
HI ! how can i convert a png image in a eps image?

Answers (1)

Akira Agata
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')

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!