ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
LegacyImageConversionTest.php
Go to the documentation of this file.
1 <?php
2 
19 namespace ILIAS\Filesystem\Util;
20 
24 
28 class LegacyImageConversionTest extends TestCase
29 {
30  private LegacyImages $images;
31 
32 
33  protected function setUp(): void
34  {
35  $this->checkImagick();
36  $this->images = new LegacyImages();
37  }
38 
39 
40  public static function someDefinitions(): array
41  {
42  return [
43  [100, 100, 'jpg', 'image/jpeg'],
44  [256, 25, 'jpg', 'image/jpeg'],
45  [1024, 5, 'jpg', 'image/jpeg'],
46  [128, 10, 'jpg', 'image/jpeg'],
47  [895, 22, 'png', 'image/png'],
48  [86, 4, 'png', 'image/png'],
49  [147, 8, 'png', 'image/png'],
50  [1000, 10, 'png', 'image/png'],
51  ];
52  }
53 
54  #[DataProvider('someDefinitions')]
56  int $expected_height,
57  int $expected_quality,
58  string $format,
59  string $expected_mime_type
60  ): void {
61  $img = __DIR__ . '/img/robot.jpg';
62  $this->assertFileExists($img);
63 
64  $temp_file = tempnam(sys_get_temp_dir(), 'img');
65 
66  $thumbnail = $this->images->thumbnail(
67  $img,
68  $temp_file,
69  $expected_height,
70  $format,
71  $expected_quality
72  );
73 
74  $this->assertEquals($temp_file, $thumbnail);
75 
76  $test_image = new \Imagick($thumbnail);
77 
78  // PNGs do not have a quality setting which can be read by getImageCompressionQuality()
79  if ($format === 'png') {
80  $expected_quality = 0;
81  }
82 
83  $this->assertEquals($expected_quality, $test_image->getImageCompressionQuality());
84  $this->assertEquals($expected_height, $test_image->getImageHeight());
85  $this->assertEquals((int) round($expected_height * 0.75), $test_image->getImageWidth());
86  unlink($temp_file);
87  }
88 
89  protected function checkImagick(): void
90  {
91  if (!class_exists('Imagick')) {
92  $this->markTestSkipped('Imagick not installed');
93  }
94  }
95 }
testImageThumbnailActualImage(int $expected_height, int $expected_quality, string $format, string $expected_mime_type)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...