Use show instead of writemime for eps
This commit is contained in:
parent
da5a538f89
commit
dc9a044141
@ -39,7 +39,7 @@ ps(fn::AbstractString) = ps(current(), fn)
|
|||||||
function eps(plt::Plot, fn::AbstractString)
|
function eps(plt::Plot, fn::AbstractString)
|
||||||
fn = addExtension(fn, "eps")
|
fn = addExtension(fn, "eps")
|
||||||
io = open(fn, "w")
|
io = open(fn, "w")
|
||||||
writemime(io, MIME("image/eps"), plt)
|
show(io, MIME("image/eps"), plt)
|
||||||
close(io)
|
close(io)
|
||||||
end
|
end
|
||||||
eps(fn::AbstractString) = eps(current(), fn)
|
eps(fn::AbstractString) = eps(current(), fn)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user