Tagged Questions
EPS is the common abbreviation for Encapsulated PostScript, a restricted version of PostScript meant to be embedded within other documents.
8
votes
2answers
2k views
How to use EPS files in a WPF or Silverlight application?
I have a few images in EPS format which I would like to use in my WPF application. Is this possible?
If not, is there a way to convert them to XAML so I can use them directly in WPF? I don't have a ...
7
votes
5answers
25k views
Error including image in Latex
I am getting the following error while compiling my Latex File :
! LaTeX Error: Cannot determine size of graphic in tree.jpg (no BoundingBox).
Why do I get this error ? What has this to do with an ...
6
votes
4answers
1k views
Export a graph to .eps file with R
How can I please export a graph to an .eps file? I actually export my graphs in .pdf file (by using function pdf), and it works quite good. I want now to have it into .eps files... is there any way?
5
votes
3answers
197 views
Optimizing size of eps/pdf files generated by Mathematica
How to optimize size of an eps or pdf file generated by Mathematica?
It is common that the file size is 50-100x bigger that it should be (an example below). For some applications (e.g. putting a ...
5
votes
1answer
282 views
gnuplot epslatex functionality in matplotlib
I am used to plot data with gnuplot, so I can easily put the figures in a LaTeX document, using the epslatex terminal. For example:
file = "data.dat"
set terminal epslatex
set output "figure1.tex"
...
5
votes
2answers
3k views
matlab write image into eps file
In MATLAB, how do you write a matrix into an image of eps format? It seems imwrite does not support eps?
convert is not working on the Linux server I am using
$ convert exploss_stumps.jpg ...
4
votes
3answers
566 views
Opacity in EPS figures
When saving graphics in Mathematica, is it possible to save figures with opacity in EPS format? For example,
Plot[Evaluate[Table[BesselJ[n, x], {n, 4}]], {x, 0, 10},
Filling -> Axis]
gives the ...
4
votes
1answer
308 views
White grid saving MATLAB plot as EPS or PDF
Whenever I save a pcolor or quiver plot as an EPS or PDF, I get this faint white grid that seems to be some sort of rendering problem. The first images shows the problem, the second one is how it ...
4
votes
2answers
681 views
Creating Vector Graphics with PHP
Im trying to create vector graphics in PHP. Ive tried Cairo and I havn't been able to get it to work. I understand that imageMagick has vector functionality but the documentation on php.net is very ...
4
votes
1answer
525 views
How can I include a .eps figure within a Tikz simple flow chart?
I would like to create a simple flow chart in latex with the TikZ package similar to the following example
http://www.texample.net/tikz/examples/simple-flow-chart/
However I would like to include ...
4
votes
9answers
3k views
What does EPS mean in C?
I have the following code snippet:
if (ABS(p43.x) < EPS && ABS(p43.y) < EPS && ABS(p43.z) < EPS) return(FALSE);
Which I'm trying to convert to C#. What does "EPS" mean?
...
3
votes
0answers
260 views
RMagick: Convert CMYK EPS to RGB PNG maintaining transparent background
I've spent a long time trying to go from a CMYK EPS to a RGB PNG using RMagick and Rails. Hopefully this will be of use to someone:
def convert_image_from_cmyk_to_rgb( image )
#puts image.alpha?
...
3
votes
1answer
47 views
Prevent matlab from writing CreationDate to an eps file
I'm using matlab to write figures as eps files for use in LaTeX, using:
print( '-depsc', 'filename.eps');
and I'm keeping those eps files in version control. As I'm generating a lot of figures at ...
3
votes
1answer
514 views
.NET Open Source Contour Plotting
I am looking for an Open Source .NET Library (or wrapper to a library) that will create contour plots from a set of values along a grid/mesh. ZedGraph is the closest thing I could find ...
3
votes
2answers
747 views
dvi generation: no bounding box
I wrote a research paper in latex and generated pdf using kile. It worked perfectly well. Now conference people are asking for dvi file also. But Kile's quick build process does not give a dvi file, ...
3
votes
2answers
619 views
eps image (from inkscape) not showing up in tcpdf
Using php and TCPDF to generate a pdf file. Everything works great except when I try to write an EPS image to the pdf using ImageEPS(). Nothing shows up. No errors (it can definitely find the ...
3
votes
4answers
1k views
Convert EPS/PDF to JPEG/PNG?
I need to be able to take EPS and PDF's and convert them to JPEG/PNG on the fly to display on a website - using .net code.
I used ADC PDF from WebSupergoo for this like 3 years ago, and it worked ...
3
votes
4answers
1k views
How to programmatically manipulate an EPS file
I am looking for libraries that would help in programatically manipulating EPS (Encapsulated PostScript) files. Basically, what I want to do is following:
Show / Hide preexisting layers in the EPS ...
3
votes
2answers
3k views
How can I create EPS files in C#?
How can I create EPS files in C#? Are there any opensource libraries available or do I have to resort to the spec and do it by hand?
2
votes
4answers
152 views
batch convert and crop postscript to pdf
I know barely enough to survive in this digital world.
I have many one-page postscript files (graphs/images) I wish to convert to pdf and automatically crop to a narrow box. I'm on windows right now ...
2
votes
2answers
93 views
How to use Prolog to print a PDF file
I am a newbie to Prolog and was just wondering if there is a way to print something to a pdf file.
2
votes
1answer
83 views
matplotlib drawing contour labels outside AxesSubplot in .eps file
I am making a plot using matplotlib.pyplot imported as PL:
FIG = PL.figure(figsize=(12,8), dpi=150)
AX = FIG.add_subplot(111, aspect='equal', xlim=(lonMin,lonMax), ylim=(latMin,latMax))
...
2
votes
1answer
78 views
Gnuplot - EPS terminal producing extra characters
I have gnuplot file that is outputting quite nicely in EPS but I'm suffering some issues when it comes to the labels. For some reason, a random figure (') is being inserted before the each label. ...
2
votes
2answers
87 views
Getting rid of interpolation/aliasing in EPS export of matlab?
I have a 2D color-map plot created with imagesc and want to export it as a .eps file using
print -depsc.
The problem is that the "original" image data is from a rather small matrix (131 x 131). When ...
2
votes
1answer
227 views
Cannot edit text in chart exported by Matplotlib and opened in Illustrator
I am exporting charts from matplotlib and editing them in Illustrator. It's great that I can edit the lines, but the text also comes in as lines, so I cannot change fonts, edit text, etc. I've ...
2
votes
1answer
708 views
saving figure to eps format without using imshow
There have been some posts here regarding image processing but I don't think that this question has been asked here. I have Matlab but not the image processing toolbox. I've tried to compress a figure ...
2
votes
1answer
93 views
Are there any libraries (or using GD2 or Image Magick) to allow the upload and processing of EPS or Vector files?
I need to allow for scaling a user uploaded logo to different sizes for different formats, are there any libraries (included or extra) that allow for the procesing of EPS files or high res artwork for ...
2
votes
0answers
576 views
How to maintain color settings when converting eps to jpg in imagemagick
I need to convert thousands of EPS files to JPG, using ImageMagick. The conversion is almost working - What is different is the colors are more saturated in the converted JPG than in the original EPS ...
2
votes
3answers
291 views
Convert xypic matrix to eps. (LaTeX)
I have a lot of BIG xypic-matrices in my LaTeX file for one of my papers, and it takes long/infinite time to compile. Is there a way to convert just the separate xypic-pieces to eps files, that I ...
2
votes
1answer
285 views
How do I embed EPS into a PDF with PDF::API2?
Obviously, I want to avoid raster images as intermediate step.
2
votes
3answers
2k views
How to load EPS files and draw them using WinForms
Is it possible to load and display EPS file using plain WinForms GDI+? If not, is there a free library to help out?
I seem to remember that Windows GDI supported EPS files, but after Googling around ...
2
votes
3answers
662 views
Third party library to convert image into pdf and eps format on the fly?
I have an upcoming .NET project that would require conversion from image (bitmap) into .pdf and .eps format. We would prefer to use third party library tool to do this rather than spending the time to ...
2
votes
1answer
1k views
Dimension Preserving JPEG to EPS Conversion
I am looking for the best way to convert my JPEG files into EPS. I have to convert my image files to EPS to insert into my LaTeX files. Note that I am using dvipdfm to compile my LaTeX file into PDF ...
2
votes
6answers
2k views
How to reduce size of R plots in EPS format?
I have a histogram with several hundred items, for which I do a Q-Q plot. This results in EPS that is 2.5 megabytes large. This is too much for a figure that is only going to be included in a ...
2
votes
2answers
968 views
Open Source Libraries for Rendering Vector Graphics Formats Through Java2D?
What are my options for rendering graphics encoded by Java2D to vector graphics formats such as EPS, SWF, SVG, VML, PDF and others I might not have heard of yet with open source libraries?
Batik is ...
1
vote
2answers
86 views
How to convert .epsf to .eps?
I'm looking for a method of converting .epsf to .eps for a publication I'm submitting. The submission site requires .eps (even though my understanding is that modern renderers should be able to read ...
1
vote
1answer
212 views
How do I stop an .EPS file from breaking text into multiple lines in PostScript?
I'm trying to specifically change out text from an .EPS file that's generated by an Adobe product, like Illustrator or InDesign. For whatever reason some fonts are broken onto separate lines and moved ...
1
vote
1answer
144 views
Importing .eps file into Java program
I need to parse an Encapsulated Post Script file into Java program. More specifically, I need to be able to extract simple vectors and curve elements from it, and manipulate them after this. Is there ...
1
vote
1answer
760 views
How do i view eps file in iphone?
I am new to iPhone app development.
Can someone help me in displaying eps file content in iphone.
Thanks
Rajeev
1
vote
1answer
274 views
How to manipulate EPS files in Java?
I am looking for an EPS library in Java. Our application generate images in different format on the server and we plan to add EPS support. I'd like the EPS library to be able to superimpose 2 images; ...
1
vote
1answer
446 views
EPS figure in pdf output is transparent and placed over text - a Latex problem
I have generated eps figures in MATLAB and am using them in Latex. (Miktex 2.9 with TexnicCenter).
I dont understand why the output ( PS-> pdf ) shows the figure on top of the text below it. Also the ...
1
vote
1answer
106 views
Transparency in EPS — does pdfmark work?
I'm trying to implement an export to EPS feature (in C++), and I'm using the pdfmark (pdf) extensions for transparency, but I have yet to see them have any effect. I'm using Illustrator 14.0 and ...
1
vote
1answer
228 views
Image processing on bifurcation diagram to get small eps size
I'm producing bifurcation diagrams (which are normally used in nonlinear dynamics). These diagrams identify abrupt changes in topologies due to stability changes. These abrupt changes occur as one or ...
1
vote
2answers
585 views
Small eps figure size in Matlab
How to create a small eps file from a Matlab figure? I use LaTeX and the eps that I'm getting with Matlab (R2010a) is of the order 6 MB. How to set the plot options to give an eps figure of smaller ...
1
vote
0answers
161 views
Extracting XMP metadata from EPS files
I am trying to implement a module in either C# or classic ASP, which extracts the XMP data from a EPS file.
Is there a framework or component (not necesarilly free) which can help me to create this ...
1
vote
2answers
319 views
Reading tags of *.tiff and *.eps files
i have to read tags of cmyk *.tiff and *.eps files. i use .net 3.5. How can i do it?
1
vote
1answer
2k views
Converting EPS to Xaml
I have bunch of EPS vector files that I want to convert to Xaml (WPF version, not Silverlight). What's the best tool for the job (Preferably a free one)?
1
vote
1answer
429 views
LaTeX porting *.eps images with eps2pdf and german umlauts (mutated vowel)
I draw a use case diagram with MagicDraw and save it as EPS file. Now I want to integrated it into my TeX file by using eps2pdf. It works so far, but the picture includes german umlauts like ä,ö or ü ...
1
vote
2answers
1k views
How to change background color of an eps file while converting it to jpeg or png
I am converting eps (Encapsulated PostScript) files to jpeg files with ghostscript. A sample command I use is:
gswin32.exe -sDEVICE=jpeg -dJPEGQ=100 -dNOPAUSE -dBATCH -dSAFER -r600x600 ...
1
vote
2answers
5k views
Included LaTeX figures do not show in dvi but do in pdf
I am trying to get LaTeX to include figures, but the eps files will not show up in the DVI. I tried various packages to no avail. The figures will show up fine if I compile to PDF, but not in the DVI ...