Feature: Labelprint für Kistenetiketten hinzugefügt

This commit is contained in:
2025-10-27 12:14:44 +01:00
parent 43bc416554
commit 14bae6c9ef
1068 changed files with 229014 additions and 1807 deletions

View File

@@ -0,0 +1,231 @@
<?php
/**
* ImportTest.php
*
* @since 2011-05-23
* @category Library
* @package PdfImage
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2011-2024 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-pdf-image
*
* This file is part of tc-lib-pdf-image software library.
*/
namespace Test;
use PHPUnit\Framework\Attributes\DataProvider;
/**
* Unit Test
*
* @since 2011-05-23
* @category Library
* @package PdfImage
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2011-2024 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-pdf-image
*/
class ImportTest extends TestUtil
{
protected function getTestObject(): \Com\Tecnick\Pdf\Image\Import
{
$encrypt = new \Com\Tecnick\Pdf\Encrypt\Encrypt();
return new \Com\Tecnick\Pdf\Image\Import(0.75, $encrypt, false);
}
public function testGetKey(): void
{
$import = $this->getTestObject();
$result = $import->getKey('/images/200x100_RGB.png', 200, 100, 100);
$this->assertEquals('6EvJjr-KnDm4EnAWVt-7wQ', $result);
}
public function testGetImageDataByKeyError(): void
{
$this->bcExpectException('\\' . \Com\Tecnick\Pdf\Image\Exception::class);
$import = $this->getTestObject();
$import->getImageDataByKey('missing');
}
public function testGetSetImageError(): void
{
$this->bcExpectException('\\' . \Com\Tecnick\Pdf\Image\Exception::class);
$import = $this->getTestObject();
$import->getSetImage(1, 2, 3, 5, 7, 17);
}
/**
* @return array<int, array<int, string>>
*/
public static function getBadAddValues(): array
{
return [
[''],
[__DIR__ . '/images/missing.png'],
['@'],
['@garbage'],
['*'],
['*http://www.example.com/image.png'],
];
}
#[DataProvider('getBadAddValues')]
public function testAddError(string $bad): void
{
$this->bcExpectException('\\' . \Com\Tecnick\Pdf\Image\Exception::class);
$import = $this->getTestObject();
$import->add($bad);
}
public function testAdd(): void
{
$import = $this->getTestObject();
$iid = $import->add(__DIR__ . '/images/200x100_RGB.png');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG1 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_GRAY.jpg');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG2 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_GRAY.png');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG3 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_INDEX16.png');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG4 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_INDEX256.png');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG5 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_RGB.jpg');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG6 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_RGB.png');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG7 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_RGBALPHA.png');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMGplain8 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_INDEXALPHA.png');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG9 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
// resize
$iid = $import->add(__DIR__ . '/images/200x100_RGB.png', 100, 50, true, 75, true);
$this->assertEquals(
'q 75.000000 0 0 37.500000 2.250000 408.750000 cm /IMGmask10 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 100, 50, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_RGBALPHA.png', 100, 50, true, 75, true);
$this->assertEquals(
'q 75.000000 0 0 37.500000 2.250000 408.750000 cm /IMGmask11 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 100, 50, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_INDEXALPHA.png', 100, 50, true, 75, true);
$this->assertEquals(
'q 75.000000 0 0 37.500000 2.250000 408.750000 cm /IMGmask12 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 100, 50, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_RGB.jpg', 100, 50, false, 75, true, [1, 2, 3]);
$this->assertEquals(
'q 75.000000 0 0 37.500000 2.250000 408.750000 cm /IMG13 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 100, 50, 600)
);
// ICC
$iid = $import->add(__DIR__ . '/images/200x100_RGBICC.png');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG14 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_RGBICC.jpg');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG15 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_RGBINT.png');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMGplain16 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
$iid = $import->add(__DIR__ . '/images/200x100_CMYK.jpg');
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG17 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
$key = $import->getKey(__DIR__ . '/images/200x100_INDEX256.png');
$data = $import->getImageDataByKey($key);
$this->assertEquals($key, $data['key']);
$iid = $import->add('@' . $data['raw']);
$this->assertEquals(
'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG18 Do Q' . "\n",
$import->getSetImage($iid, 3, 5, 200, 100, 600)
);
// disabled because of libpngerror
// $iid = $testObj->add('*http://localhost:8000/200x100_INDEX16.png');
// $this->assertEquals(
// 'q 150.000000 0 0 75.000000 2.250000 371.250000 cm /IMG18 Do Q' . "\n",
// $testObj->getSetImage($iid, 3, 5, 200, 100, 600)
// );
$out = $import->getOutImagesBlock(10);
$this->assertNotEmpty($out);
$this->assertEquals(37, $import->getObjectNumber());
$xobjectDict = $import->getXobjectDict();
$this->assertEquals(
' /IMG1 11 0 R /IMG2 12 0 R /IMG3 13 0 R /IMG4 15 0 R'
. ' /IMG5 17 0 R /IMG6 18 0 R /IMG7 11 0 R /IMGplain8 20 0 R'
. ' /IMG9 22 0 R /IMGmask10 23 0 R /IMGmask11 24 0 R'
. ' /IMGmask12 25 0 R /IMG13 27 0 R /IMG14 29 0 R'
. ' /IMG15 31 0 R /IMGplain16 33 0 R /IMG17 35 0 R /IMG18 37 0 R',
$xobjectDict
);
$xdByKeys = $import->getXobjectDictByKeys([2,3]);
$this->assertEquals(
' /IMG2 12 0 R /IMG3 13 0 R',
$xdByKeys
);
}
}

View File

@@ -0,0 +1,41 @@
<?php
/**
* TestUtil.php
*
* @since 2020-12-19
* @category Library
* @package PdfImage
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2015-2024 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-pdf-image
*
* This file is part of tc-lib-color software library.
*/
namespace Test;
use PHPUnit\Framework\TestCase;
/**
* Web Color class test
*
* @since 2020-12-19
* @category Library
* @package PdfImage
* @author Nicola Asuni <info@tecnick.com>
* @copyright 2015-2024 Nicola Asuni - Tecnick.com LTD
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
* @link https://github.com/tecnickcom/tc-lib-pdf-image
*/
class TestUtil extends TestCase
{
/**
* @param class-string<\Throwable> $exception
*/
public function bcExpectException($exception): void
{
parent::expectException($exception);
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 960 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB