charger une image
This commit is contained in:
23
upLoadImage/vendor/intervention/image/src/Encoders/TiffEncoder.php
vendored
Normal file
23
upLoadImage/vendor/intervention/image/src/Encoders/TiffEncoder.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Intervention\Image\Encoders;
|
||||
|
||||
use Intervention\Image\Drivers\SpecializableEncoder;
|
||||
|
||||
class TiffEncoder extends SpecializableEncoder
|
||||
{
|
||||
/**
|
||||
* Create new encoder object
|
||||
*
|
||||
* @param null|bool $strip Strip EXIF metadata
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(
|
||||
public int $quality = self::DEFAULT_QUALITY,
|
||||
public ?bool $strip = null
|
||||
) {
|
||||
//
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user