Input Vector Graphics into Matlab
이전 댓글 표시
Is there anyway to input a vector graphic into Matlab (i.e., an EMF, AI, EPS, etc.). This seems like it should be standard but I haven't found anything.
채택된 답변
추가 답변 (3개)
Jan
2013년 1월 9일
You cannot import vector graphics directly. Please send an enhancement request to TMW.
You can use GhostScript to import a PDF in a wanted resolution and obtain the resulting pixel image. You can of course import an EPS file in text mode, but then the problem remains that most likely you do not just want to import the file, but display it also, such that actually the rendering is the problem. And again GhostScript can be a solution.
Another method is to open an ActiveX object in a Matlab figure, e.g.:
FigH = figure;
h = actxcontrol('AcroPDF.PDF.1', [10, 10, 400, 400], FigH)
h.LoadFile(FileName);
h.move([5, 5, 410, 440]);
h.setZoom(100);
By a similar way a HTML browser window can be embedded into a Matlab figure, such that an SVG-file can be displayed seamlessly (when SVG is supported by the used browser). Unfortunately, these are platform specific commands and there is not Matlab function to do this transparently.
댓글 수: 2
Zoltan
2013년 2월 28일
Where is the source how to use this activeXcontrol object or the others? How do you know for example that h.LoadFile(FileName) the way to load the pdf into it? I really would like to exploit these possibilities.
Jan
2013년 3월 4일
@Zoltan: To be true: I do not have any idea where this snippet is coming from. I store any of such jewels I find in the forums in a file. After I've found the calling sequence to open the Acrobat-ActiveX-control and got the object "h", the methods() function revealed more details.
Daniel Shub
2013년 1월 9일
1 개 추천
You can definitely import an EPS file (and any other vector graphic that is saved as plain text) by simply reading in the text file as a string. Rendering the graphics object, on the other hand is very difficult. You might be able to hack tex.m to make it display an EPS file in a standard figure window, but I don't know for sure.
댓글 수: 3
Jan
2013년 1월 9일
TeX cannot render EPS files. These are different languages. The TeX compiler can convert TeX to EPS (usually with the intermediate step of a DVI).
Daniel Shub
2013년 1월 9일
@Jan you are correct TeX doesn't render anything. The MATLAB function tex.m returns a DVI file and the MATLAB graphic engine knows what to do with the returned DVI file. Since in general the TeX engine can convert an EPS file into a DVI file, I think it might be possible to fool MATLAB.
A very interesting idea. We should investigate this furtherly. I assumed, that the EPS is not included in the DVI, but during the conversion from DVI to PS or to PDF the contents of the EPS are embedded. On the other hand modern PDFLaTeX interpreters do not create the intermediate DVI anymore for converting TeX code to a PDF.
There is a Java library, which imports SVG files and renders them for the requested pixel size. Then for zooming a new import is required. The same should work for EPS interpreted by GhostScript: We can embed the EPS source in the ApplicationData of the figure and call GhostScript to create the pixel-view for the current resolution. Unfortunately I neither know how to feed GhostScript with a string stored in memory, nor do I know an efficient way to return the pixel image from GhostScript without using the harddisk. But of course this is possible calling the GhostScript library directly and not through the command line interface gswin32c.exe.
Azzi Abdelmalek
2013년 1월 8일
편집: Azzi Abdelmalek
2013년 1월 8일
0 개 추천
You can save your vector graphics as a jpg (or tif,...) file, then read it with imread. I don't think that matlab handles such format
댓글 수: 2
Jim Lehane
2013년 1월 8일
편집: Jim Lehane
2013년 1월 8일
Azzi Abdelmalek
2013년 1월 8일
편집: Azzi Abdelmalek
2013년 1월 8일
Yes, If you don't find these tools in Image Processing Toolbox, I don't think to have heard about such toolbox in matlab. There are expert on image Processing in this forum, they will give their point.
카테고리
도움말 센터 및 File Exchange에서 Printing and Saving에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!