Are there any constraints on the size of Image that can be created using the MapEngine class?
E.g. if I were to do this, would the only constraint be the amount of memory available to my process?
MapEngine engine = new MapEngine();
int width = 28*300; //28in*300dpi
int height = width;
Bitmap bitmap = new Bitmap(width, height);
engine.OpenAllLayers();
engine.DrawStaticLayers(bitmap, GeographyUnit.Meter);
engine.CloseAllLayers();
Maximum image size for MapEngine
Hi Jeremy,
Yes, there are no any other constraints from Map Suite except the max size of the bitmap which limits by the amount of memory.
If you encounter any issue with the large size of the bitmap, please feel free to let us know.
Thanks,
Troy