我正在尝试以编程方式截取 ArcGIS 地图视图的屏幕截图。我还没有在 ArcGIS 库中看到任何可以简化此操作的代码。我真的在尝试创建地图视图的 UIImage,包括当前正在显示的任何要素图层。我尝试对 arcgisMapView 和包含 arcgisMapView 的超级视图使用 UIGraphicsBeginImageContext,但两次尝试都为 arcgisMapView 区域返回了一个空白视图。
UIGraphicsBeginImageContext(self.view.bounds.size);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *mapImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(mapImage, nil, nil, nil);
和
UIGraphicsBeginImageContext(arcgisMapView.bounds.size);
[arcgisMapView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *mapImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(mapImage, nil, nil, nil);
请帮助和感谢。