画像パーシングライブラリーの追加

This commit is contained in:
2025-12-31 06:03:47 +09:00
parent cb03343677
commit f0b5c7be2c
5 changed files with 274 additions and 6 deletions

View File

@@ -380,4 +380,9 @@ function countmatch(string $str): bool {
$sum = $numUpper + $numLower + $numDigit + $numSymbol;
return $len == $sum;
}
function getImageInfo(string $url): \Site\Lib\Image {
$img = new \Site\Lib\Image($url);
return $img;
}