You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
	
	
		
		
			
	
	
		
			
				
					
						
							|  |  |  | <?php
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace yiiunit\extensions\imagine;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use yii\imagine\Image;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * @group vendor
 | 
					
						
							|  |  |  |  * @group imagine
 | 
					
						
							|  |  |  |  */
 | 
					
						
							|  |  |  | class ImageGdTest extends AbstractImageTest
 | 
					
						
							|  |  |  | {
 | 
					
						
							|  |  |  | 	protected function setUp()
 | 
					
						
							|  |  |  | 	{
 | 
					
						
							|  |  |  | 		if (!function_exists('gd_info')) {
 | 
					
						
							|  |  |  | 			$this->markTestSkipped('Skipping ImageGdTest, Gd not installed');
 | 
					
						
							|  |  |  | 		} else {
 | 
					
						
							|  |  |  | 			Image::setImagine(null);
 | 
					
						
							|  |  |  | 			Image::$driver = Image::DRIVER_GD2;
 | 
					
						
							|  |  |  | 			parent::setUp();
 | 
					
						
							|  |  |  | 		}
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	protected function isFontTestSupported()
 | 
					
						
							|  |  |  | 	{
 | 
					
						
							|  |  |  | 		$infos = gd_info();
 | 
					
						
							|  |  |  | 		return isset($infos['FreeType Support']) ? $infos['FreeType Support'] : false;
 | 
					
						
							|  |  |  | 	}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }
 |