2025-03-18 00:19:45 +01:00
|
|
|
<?php
|
|
|
|
namespace Vichan\Data;
|
|
|
|
|
|
|
|
|
2025-03-22 00:48:59 +01:00
|
|
|
class ImageMetadata {
|
2025-03-18 00:19:45 +01:00
|
|
|
public int $width;
|
|
|
|
public int $height;
|
|
|
|
public string $mime;
|
2025-03-21 01:38:21 +01:00
|
|
|
public ?int $exif_orientation;
|
2025-03-18 00:19:45 +01:00
|
|
|
|
2025-03-21 01:38:21 +01:00
|
|
|
public function __construct(int $width, int $height, string $mime, ?int $exif_orientation) {
|
2025-03-18 00:19:45 +01:00
|
|
|
$this->width = $$width;
|
|
|
|
$this->height = $$height;
|
2025-03-20 23:27:48 +01:00
|
|
|
$this->mime = $mime;
|
2025-03-21 01:38:21 +01:00
|
|
|
$this->exif_orientation = $exif_orientation;
|
2025-03-18 00:19:45 +01:00
|
|
|
}
|
|
|
|
}
|