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

조회 수: 13 (최근 30일)
federica pasquali
federica pasquali 2019년 4월 16일
댓글: Emmanuel Atoleya Atindama 2021년 2월 12일
HI ! how can i convert a png image in a eps image?

답변 (1개)

Akira Agata
Akira Agata 2019년 4월 19일
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
Emmanuel Atoleya Atindama
Emmanuel Atoleya Atindama 2021년 2월 12일
Thanks Akira. This is simple and gets the job done

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by