1GdbService_MapServer ws_map = new GdbService_MapServer();
2string mapName = ws_map.GetDefaultMapName();
3
4MapDescription mapDesc = ws_map.GetServerInfo(mapName).DefaultMapDescription;
5
6ImageDescription imageDesc = new ImageDescription();
7
8imageDesc.ImageDisplay = new ImageDisplay();
9imageDesc.ImageDisplay.ImageDPI = 96;
10imageDesc.ImageDisplay.ImageHeight = pictureBox1.Height;
11imageDesc.ImageDisplay.ImageWidth = pictureBox1.Width;
12
13imageDesc.ImageType = new ImageType();
14imageDesc.ImageType.ImageFormat = esriImageFormat.esriImagePNG;
15imageDesc.ImageType.ImageReturnType = esriImageReturnType.esriImageReturnURL;
16
17MapImage mapImage = ws_map.ExportMapImage(mapDesc, imageDesc);
18pictureBox1.ImageLocation = mapImage.ImageURL;
19