Files
23cm/common/ImageHelper.php
2026-01-25 18:18:09 +08:00

16 lines
284 B
PHP

<?php
namespace app\common;
class ImageHelper
{
public static function imageMogr2H480(string $imageUrl): string
{
return "{$imageUrl}-h480";
}
public static function imageMogr2H1080(string $imageUrl): string
{
return "{$imageUrl}-h1080";
}
}