ImageMergeTest.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. use PHPUnit\Framework\TestCase;
  3. use SimpleSoftwareIO\QrCode\Image;
  4. use SimpleSoftwareIO\QrCode\ImageMerge;
  5. class ImageMergeTest extends TestCase
  6. {
  7. /**
  8. * The location to save the testing image.
  9. *
  10. * @var string
  11. */
  12. protected $testImageSaveLocation;
  13. /**
  14. * The location to save the compare image.
  15. *
  16. * @var string
  17. */
  18. protected $compareTestSaveLocation;
  19. /**
  20. * The ImageMerge Object.
  21. *
  22. * @var ImageMerge
  23. */
  24. protected $testImage;
  25. /**
  26. * The location of the test image to use.
  27. *
  28. * @var string
  29. */
  30. protected $testImagePath;
  31. public function setUp()
  32. {
  33. $this->testImagePath = file_get_contents(dirname(__FILE__).'/Images/simplesoftware-icon-grey-blue.png');
  34. $this->testImage = new ImageMerge(
  35. new Image($this->testImagePath),
  36. new Image($this->testImagePath)
  37. );
  38. $this->testImageSaveLocation = dirname(__FILE__).'/testImage.png';
  39. $this->compareTestSaveLocation = dirname(__FILE__).'/compareImage.png';
  40. }
  41. public function tearDown()
  42. {
  43. @unlink($this->testImageSaveLocation);
  44. @unlink($this->compareTestSaveLocation);
  45. }
  46. public function test_it_merges_two_images_together_and_centers_it()
  47. {
  48. //We know the test image is 512x512
  49. $source = imagecreatefromstring($this->testImagePath);
  50. $merge = imagecreatefromstring($this->testImagePath);
  51. //Create a PNG and place the image in the middle using 20% of the area.
  52. imagecopyresampled(
  53. $source,
  54. $merge,
  55. 204,
  56. 204,
  57. 0,
  58. 0,
  59. 102,
  60. 102,
  61. 512,
  62. 512
  63. );
  64. imagepng($source, $this->compareTestSaveLocation);
  65. $testImage = $this->testImage->merge(.2);
  66. file_put_contents($this->testImageSaveLocation, $testImage);
  67. $this->assertEquals(file_get_contents($this->compareTestSaveLocation), file_get_contents($this->testImageSaveLocation));
  68. }
  69. /**
  70. * @expectedException InvalidArgumentException
  71. */
  72. public function test_it_throws_an_exception_when_percentage_is_greater_than_1()
  73. {
  74. $this->testImage->merge(1.1);
  75. }
  76. }