public void TestGetCropImage()
        {
            ImagingApi target = new ImagingApi(APIKEY, APPSID, BASEPATH);
            StorageApi storageApi = new StorageApi(APIKEY, APPSID, BASEPATH);


            string name = "aspose.jpg";
            string format = "png";
            int? x = 30;
            int? y = 40;
            int? width = 100;
            int? height = 100;
            string outPath = "";
            string folder = "";
            string storage = "";
             storageApi.PutCreate(name, null, null, System.IO.File.ReadAllBytes("\\temp\\imaging\\resources\\" + name)); 
            ResponseMessage actual;
            actual = target.GetCropImage(name, format, x, y, width, height, outPath, folder, storage);
            Assert.AreEqual(200, actual.Code);
            Assert.IsInstanceOfType(new ResponseMessage(), actual.GetType()); 
        }