
Tony,
Are you adding them to the map as a ArcGISDynamicMapServiceLayer? If so have you tried to set the imageFormat="jpg" and dpi="150"? This is what I do for my Imagery layers.
if(label == "Aerial Photography")
{
dynLayer.imageFormat = "jpg";
dynLayer.dpi = 150;
dynLayer.minScale = 10000;
}
Tony,
Yep that's why I actually use these lines in my code:if(label == "Aerial Photography") { dynLayer.imageFormat = "jpg"; dynLayer.dpi = 150; dynLayer.minScale = 10000; }
Tony,
I am pretty sure it is server side. Which means larger images/bytes that are to be transferred to the client if PNG 24.