ImageMetadata.php: rename from ImageMetadataResult.php

This commit is contained in:
Zankaria 2025-03-22 00:48:59 +01:00
parent c3f63ee79a
commit 322543a2e0

View file

@ -0,0 +1,17 @@
<?php
namespace Vichan\Data;
class ImageMetadata {
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;
$this->mime = $mime;
$this->exif_orientation = $exif_orientation;
}
}