예제 #1
0
 public function testCanSetResizeFillAndCanSeTransparentBackground()
 {
     $krakenOptions = new KrakenOptions('fake_key', 'fake_secret');
     $krakenOptions->resizeFill(100, 100, 0, 0, 0, 0);
     $this->assertEquals(['auth' => ['api_key' => 'fake_key', 'api_secret' => 'fake_secret'], 'resize' => ['strategy' => 'fill', 'width' => 100, 'height' => 100, 'background' => 'rgba(0, 0, 0, 0.0)'], 'wait' => true], $krakenOptions->getConfiguredOptions());
 }