我正在编写一个C#程序,使用 http://www.icsharpcode.net/opensource/sharpziplib/ 将包含KML文件和图标的KMZ文件压缩为zip文件。
我的尝试:
对于我在压缩过程中做错了什么会导致图标一开始不显示有什么想法吗?
发布于 2014-03-26 13:21:33
让用 CSharpZipLib 创建的KMZ文件与Google正常工作的一个技巧是关闭与Google不兼容的Zip64模式。
若要使KMZ文件在Google和其他地球浏览器中可互操作,则必须使用“遗留”压缩方法(例如压缩)与ZIP2.0兼容,而不使用扩展(如Zip64 )。 KML Errata 中提到了这个问题。
下面是创建KMZ文件的C#代码片段:
using (FileStream fileStream = File.Create(ZipFilePath)) // Zip File Path (String Type)
using (ZipOutputStream zipOutputStream = new ZipOutputStream(fileStream))
// following line must be present for KMZ file to work in Google Earth
zipOutputStream.UseZip64 = UseZip64.Off;
// now normally create the zip file as you normally would
// add root KML as first entry
ZipEntry zipEntry = new ZipEntry("doc.kml");
zipOutputStream.PutNextEntry(zipEntry);
//build you binary array from FileSystem or from memory...
zipOutputStream.write(/*binary array*/);
zipOutputStream.CloseEntry();
// next add referenced file entries (e.g. icons, etc.)