<?php<448901948@qq.com>namespace tests;
use think\Image;
class ThumbTest extends TestCase
{
public function testJpeg()
{
$pathname = TEST_PATH . 'tmp/thumb.jpg';
$image = Image::open($this->getJpeg());
$image->thumb(200, 200, Image::THUMB_CENTER)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getJpeg());
$image->thumb(200, 200, Image::THUMB_SCALING)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(150, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getJpeg());
$image->thumb(200, 200, Image::THUMB_FILLED)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getJpeg());
$image->thumb(200, 200, Image::THUMB_NORTHWEST)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getJpeg());
$image->thumb(200, 200, Image::THUMB_SOUTHEAST)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getJpeg());
$image->thumb(200, 200, Image::THUMB_FIXED)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
}
public function testPng()
{
$pathname = TEST_PATH . 'tmp/thumb.png';
$image = Image::open($this->getPng());
$image->thumb(200, 200, Image::THUMB_CENTER)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getPng());
$image->thumb(200, 200, Image::THUMB_SCALING)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(150, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getPng());
$image->thumb(200, 200, Image::THUMB_FILLED)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getPng());
$image->thumb(200, 200, Image::THUMB_NORTHWEST)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getPng());
$image->thumb(200, 200, Image::THUMB_SOUTHEAST)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getPng());
$image->thumb(200, 200, Image::THUMB_FIXED)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
}
public function testGif()
{
$pathname = TEST_PATH . 'tmp/thumb.gif';
$image = Image::open($this->getGif());
$image->thumb(200, 200, Image::THUMB_CENTER)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getGif());
$image->thumb(200, 200, Image::THUMB_SCALING)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(113, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getGif());
$image->thumb(200, 200, Image::THUMB_FILLED)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getGif());
$image->thumb(200, 200, Image::THUMB_NORTHWEST)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getGif());
$image->thumb(200, 200, Image::THUMB_SOUTHEAST)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
$image = Image::open($this->getGif());
$image->thumb(200, 200, Image::THUMB_FIXED)->save($pathname);
$this->assertEquals(200, $image->width());
$this->assertEquals(200, $image->height());
$file = new \SplFileInfo($pathname);
$this->assertTrue($file->isFile());
@unlink($pathname);
}
}