フィルターのクリア

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

5 ビュー (過去 30 日間)
federica pasquali
federica pasquali 2019 年 4 月 16 日
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