transformation() public method

public transformation ( $transformation, $options = [] )
Example #1
0
 function test16a_transformation_delete()
 {
     // should allow deleting named transformation
     $this->api->create_transformation(self::$api_test_transformation_2, array("crop" => "scale", "width" => 103));
     $this->api->transformation(self::$api_test_transformation_2);
     $this->api->delete_transformation(self::$api_test_transformation_2);
 }
 /**
  * @expectedException \Cloudinary\Api\NotFound
  */
 function test17b_transformation_delete_implicit()
 {
     $this->api->transformation("c_scale,w_100");
 }