Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
1 | <?php |
2 | |
3 | declare(strict_types=1); |
4 | |
5 | namespace PeServer\Core\Image; |
6 | |
7 | /** |
8 | * 画像サイズ変換フラグ。 |
9 | */ |
10 | enum ScaleMode: int |
11 | { |
12 | #region define |
13 | |
14 | /** 最近接補間。 */ |
15 | case NearestNeighbour = IMG_NEAREST_NEIGHBOUR; |
16 | /** 双直線補間の固定小数点実装 (デフォルト (画像作成時も含む))。 */ |
17 | case BilinearFixed = IMG_BILINEAR_FIXED; |
18 | /** 双三次補間。 */ |
19 | case Bicubic = IMG_BICUBIC; |
20 | /** 双三次補間の固定小数点実装。 */ |
21 | case BicubicFixed = IMG_BICUBIC_FIXED; |
22 | |
23 | #endregion |
24 | } |