Beispiel #1
0
 public function testStrip()
 {
     $source = fopen("{$this->_files}/image_landscape.png", 'r');
     $subject = new Imagick($source);
     $profile = file_get_contents("{$this->_data}/sRGB_IEC61966-2-1_black_scaled.icc");
     $subject->profile('icc', $profile);
     $result = $subject->strip('icc');
     $this->assertTrue($result);
     $result = $subject->profile('icc');
     $this->assertFalse($result);
 }