leftypol/inc/Data/ImageMetadataResult.php

18 lines
378 B
PHP
Raw Normal View History

<?php
namespace Vichan\Data;
class ImageMetadataResult {
public int $width;
public int $height;
public string $mime;
public ?int $exif_orientation;
public function __construct(int $width, int $height, string $mime, ?int $exif_orientation) {
$this->width = $$width;
$this->height = $$height;
2025-03-20 23:27:48 +01:00
$this->mime = $mime;
$this->exif_orientation = $exif_orientation;
}
}