本文介绍了eps空白白线出口冲浪地块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用以下代码以eps格式导出了一个冲浪情节。
I exported a surf plot in eps format using the below code.
s = figure(10);
surfc(double(smooth_img));
saveas(figure(10), 'surf.eps','epsc2');
我无法删除图像中的空白白线(即y = 250和x = 100)。有人有任何解决方案吗?
I'm not able to remove the blank white lines in the image (i.e. at y = 250 and x =100). Does anybody have any solution?
推荐答案
可能有很多原因。以下是一些麻烦的建议:
It can have tons of reasons. Here are some suggestions for trouble shooting:
1)使用,而不是 saveas
。假设您实际将渲染器设置为画家
,则矢量图形没有区别。
1) Use print
instead of saveas
. There is no difference for vector-graphics, assuming you actually set the renderer to painters
.
set(gcf,'Renderer','painters')
print(gcf,'surf.eps','-depsc2')
2)其他格式怎么办?您是否尝试使用 svg
和 eps
?错误是否仍然存在?
2) What about other formats? Have you tried using svg
and eps
? Does the error remain?
这篇关于eps空白白线出口冲浪地块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!