[求助]关于Web Service
最近写了个Web Service但不支持Image或Bitmap等对象代码如下:[WebMethod]
public Image GetPartitionPic(Image sourceimg,int x,int y,int width,int height)
{
Bitmap b=new Bitmap(width,height);
..............
}
运行时总报错:无法序列化,因为Image没有公有构造函数(注:我已写了构造)