Deprecate image dimensions in extractImage
This commit is contained in:
parent
2b32688d3c
commit
8c16e7f4c7
2 changed files with 4 additions and 6 deletions
|
|
@ -46,7 +46,7 @@ class FFMpegTest extends \PHPUnit_Framework_TestCase
|
|||
$dest = __DIR__ . '/../../files/extract_Test.jpg';
|
||||
|
||||
$this->object->open(__DIR__ . '/../../files/Test.ogv');
|
||||
$this->object->extractImage(2, $dest, 200, 200);
|
||||
$this->object->extractImage(2, $dest);
|
||||
|
||||
$this->probe->probeFormat($dest);
|
||||
|
||||
|
|
@ -59,7 +59,7 @@ class FFMpegTest extends \PHPUnit_Framework_TestCase
|
|||
*/
|
||||
public function testExtractImageNoMovie()
|
||||
{
|
||||
$this->object->extractImage(2, 'Path', 200, 200);
|
||||
$this->object->extractImage(2, 'Path');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue