HOW TO CONVERT A PNG IMAGE IN TO A EPS IMAGE?
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
HI ! how can i convert a png image in a eps image?
0 Commenti
Risposte (1)
Akira Agata
il 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 Commento
Vedere anche
Categorie
Scopri di più su Convert Image Type in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!