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

4 vues (au cours des 30 derniers jours)
federica pasquali
federica pasquali le 16 Avr 2019
HI ! how can i convert a png image in a eps image?

Réponses (1)

Akira Agata
Akira Agata le 19 Avr 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 commentaire
Emmanuel Atoleya Atindama
Emmanuel Atoleya Atindama le 12 Fév 2021
Thanks Akira. This is simple and gets the job done

Connectez-vous pour commenter.

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by