微网站的优点,网站与网站链接怎么做,北京感染峰值已过,公司网站用服务器做项目时候用wcf 返回图片,从官网上找了找一次只能返回一张图片#xff0c;但是一直查不到返回多个图片的方法#xff0c;ios 可以异步加载看速度也可以#xff0c;先记录一下等以后用解决了再发[ServiceContract]public interface IImageServer{[OperationContract, WebGet…做项目时候用wcf 返回图片,从官网上找了找一次只能返回一张图片但是一直查不到返回多个图片的方法ios 可以异步加载看速度也可以先记录一下等以后用解决了再发[ServiceContract]public interface IImageServer{[OperationContract, WebGet]Stream GetImage(int width, int height);}public class Service : IImageServer{public Stream GetImage(int width, int height){Bitmap bitmap new Bitmap(width, height);for (int i 0; i bitmap.Width; i){for (int j 0; j bitmap.Height; j){bitmap.SetPixel(i, j, (Math.Abs(i - j) 2) ? Color.Blue : Color.Yellow);}}MemoryStream ms new MemoryStream();bitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);ms.Position 0;WebOperationContext.Current.OutgoingResponse.ContentType image/jpeg;//可以换成其它格式的图片return ms;}}