我正在使用以下脚本将图像转换为 EPS 文件。
%% Image 2 eps file.
% - img: the image.
% - eps: eps filename.
function Image2Eps(img, eps)
imshow(img,'border','tight','InitialMagnification',100);
print(gcf,'-depsc',eps);
end
生成的文件几乎将图像紧紧地结合在一起。但是在顶部和右侧总是会留下一个小的边距。如何使 EPS 文件与位图图像的大小完全一致?