我有以下代码来打印覆盖到谷歌地球图像的计算级别。
im = imread('googleEarthImage.png');
figure
imagesc(lon,fliplr(lat),im); set(gca, 'YDir', 'normal');
hold on
pcolor(lon,lat,level); shading flat; axis([min(lon) max(lon) min(lat) max(lat)]);
% Save figure
set(gcf,'InvertHardcopy','on');
set(gcf,'PaperUnits','inches','PaperPosition',[0 0 6 5])
print('level','-dpng','-r300');
代码的问题是打印的图像不包含背景谷歌地球图像。谷歌地球图像被白色背景取代。但是,当我删除
axis([min(lon) max(lon) min(lat) max(lat)]);
我用谷歌地球图像在背景中得到计算的水平,但它被缩小了,因为我不能使用轴()。非常感谢您在正确方向上的任何帮助。谢谢