博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
arcengine 将地图文件保存为图片(包括各种图片格式)
阅读量:5951 次
发布时间:2019-06-19

本文共 2436 字,大约阅读时间需要 8 分钟。

1,最近做了个地图文件输出图片的功能,思想主要就是利用MapControl的ActiveView中的out方法:

2代码如下:欢迎交流指正

1             SaveFileDialog m_save = new SaveFileDialog(); 2             m_save.Filter = "jpeg图片(*.jpg)|*.jpg|tiff图片(*.tif)|*.tif|bmp图片(*.bmp)|*.bmp|emf图片(*.emf)|*.emf|png图片(*.png)|*.png|gif图片(*.gif)|*.gif"; 3             m_save.ShowDialog(); 4             string Outpath = m_save.FileName; 5             if (Outpath != "") 6             { 7                 //分辨率 8                 double resulotion = MapControl.ActiveView.ScreenDisplay.DisplayTransformation.Resolution; 9                 IExport m_export = null;10                 if (Outpath.EndsWith(".jpg"))11                 {12                     m_export = new ExportJPEG() as IExport;13 14                 }15                 else if (Outpath.EndsWith(".tig"))16                 {17                     m_export = new ExportTIFF() as IExport;18 19                 }20                 else if (Outpath.EndsWith(".bmp"))21                 {22                     m_export = new ExportBMP() as IExport;23 24                 }25                 else if (Outpath.EndsWith(".emf"))26                 {27                     m_export = new ExportEMF() as IExport;28                 }29                 else if (Outpath.EndsWith(".png"))30                 {31                     m_export = new ExportPNG() as IExport;32                 }33                 else if (Outpath.EndsWith(".gif"))34                 {35                     m_export = new ExportGIF() as IExport;36                 }37                 //设置输出的路径38                 m_export.ExportFileName = Outpath;39                 //设置输出的分辨率40                 m_export.Resolution = resulotion;41                 tagRECT piexPound;42                 piexPound = MapControl.ActiveView.ScreenDisplay.DisplayTransformation.get_DeviceFrame();43                 IEnvelope m_envelope = new Envelope() as IEnvelope;44                 m_envelope.PutCoords(piexPound.left, piexPound.bottom, piexPound.right, piexPound.top);45                 //设置输出的IEnvelope46                 m_export.PixelBounds = m_envelope;47 48                 ITrackCancel m_trackCancel = new CancelTracker();49                 //输出的方法50                 MapControl.ActiveView.Output(m_export.StartExporting(), (short)resulotion, ref piexPound, MapControl.ActiveView.Extent, m_trackCancel);51                 m_export.FinishExporting();

 

转载于:https://www.cnblogs.com/huchaoheng/p/3579996.html

你可能感兴趣的文章
2016年1月中国域名商解析量14强:排名变动大
查看>>
IntelliJ IDEA 14 license key gen
查看>>
ogg启动报错libnnz11.so: cannot open shared object file
查看>>
如何实现“持续集成”?闲鱼把研发效率翻了个翻
查看>>
IT人的“钱”景以及收入的两道坎
查看>>
PHP 5.4.8 添加系统服务命令
查看>>
jdk与jre的区别
查看>>
什么是https,和ssl什么关系,为什么用https
查看>>
27. 访问者模式
查看>>
好程序员web分享图片标签、绝对路径和相对路径
查看>>
Postman 如何处理上一个接口返回值作为下一个接口入参?
查看>>
Linux帮助命令
查看>>
第四章 Linux命令
查看>>
Unicode Tips
查看>>
IOS LocationManager定位国内偏移,火星坐标(GCJ-02)解决方法
查看>>
检查出某个文件的大小
查看>>
android ImageSwitcher案例
查看>>
FBO
查看>>
注册cn域名应该注意些什么
查看>>
sed 删除行首空格
查看>>