需要以下代码段的帮助

时间:2011-08-05 05:57:09

标签: c# asp.net

我试图调用静态函数cropImage,它的外观如何......

 public static Image CropImage(Image img, Rectangle cropArea)
 {
        logic goes here..
 }

我想调用此函数来裁剪图像我该怎么办? 当我尝试这样的时候

Rectangle objRect=new Rectangle(20,10,200,100);
static_className.CropImage(image,objRect);

我收到一条错误说无效的论点。

1 个答案:

答案 0 :(得分:0)

Image oldImg;

Rectangle objrect=new Rectangle(20,10,200,100);
Image newImage=static_className.cropImage(oldImg,objrect);