在eps的空白的白色线输出了海浪剧情

时间:2014-08-13 15:42:14

标签: matlab image-processing plot export eps

我使用以下代码以eps格式导出​​了冲浪图。

  s = figure(10); 
  surfc(double(smooth_img));
  saveas(figure(10), 'surf.eps','epsc2');

enter image description here

我无法移除图像中的空白行(即y = 250且x = 100)。有没有人有解决方案?

1 个答案:

答案 0 :(得分:1)

它有很多原因。以下是一些解决问题的建议:

1)使用print代替saveas。假设您实际将渲染器设置为painters

,矢量图形没有区别
set(gcf,'Renderer','painters')
print(gcf,'surf.eps','-depsc2')

2)其他格式怎么样?您是否尝试过使用svgeps?错误是否仍然存在?