png to eps conversion
Ältere Kommentare anzeigen
I want to convert an image .png to .eps converstion.. Can you please suggest me the code..
I=imread('rp_noise.png');
imwrite(I,'rp_eps.eps','eps');
showing error ???Invalid input syntax or unrecognized format "eps"
Help me!
1 Kommentar
Rahul Singhal
am 5 Mai 2017
Hi,
Following code may help you to convert PNG images to eps (COLOUR)
fileName = 'FarmerStats'; % your FILE NAME as string
A = imread(fileName,'png');
set(gcf,'visible','off') %suppress figure
image(A);
axis image % resolution based on image
axis off % avoid printing axis
set(gca,'LooseInset',get(gca,'TightInset')); % removing extra white space in figure
saveas(gcf,fileName,'epsc'); % save as COLOR eps file
Akzeptierte Antwort
Weitere Antworten (2)
Walter Roberson
am 13 Nov. 2011
1 Stimme
imwrite() cannot create eps. Use print(), or use Oliver's File Exchange Contribution "export_fig".
Daniel Shub
am 13 Nov. 2011
0 Stimmen
You realize that png is a bitmap image format and eps is traditionally used for vector graphics. While you can embed a bitmap image into it, it is unclear why you would want to convert a bitmap graphic into a vector graphic.
1 Kommentar
Raviteja
am 13 Nov. 2011
Kategorien
Mehr zu Printing and Saving finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!