forked from NEKOGET/FuelPHP_docs_jp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
image.html
1173 lines (1078 loc) · 32.3 KB
/
image.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./../assets/css/combined.css">
<link rel="shortcut icon" href="./../favicon.ico" />
<script src="http://www.google.com/jsapi" type="text/javascript"></script>
<script type="text/javascript">
var path = './../';
var class_prefix = "Image::";
</script>
<script src="./../assets/js/combined.js"></script>
<title>Image - クラス - FuelPHP ドキュメント</title>
</head>
<body>
<div id="container">
<header id="header">
<div class="table">
<h1>
<a href="http://fuelphp.com"><img height="37px" width="147px" src="./../assets/img/fuel.png" /></a>
<strong>Documentation</strong>
</h1>
<form id="google_search">
<p>
<span id="search_clear"> </span>
<input type="submit" name="search_submit" id="search_submit" value="検索" />
<input type="text" value="" id="search_input" name="search_input" />
</p>
</form>
</div>
<nav>
<div class="clear"></div>
</nav>
<a href="#" id="toc_handle">目次</a>
<div class="clear"></div>
</header>
<div id="cse">
<div id="cse_point"></div>
<div id="cse_content"></div>
</div>
<div id="main">
<h2>Image クラス</h2>
<p>
Image クラスは、簡単にリサイズ、トリミングのような画像に共通の操作を加えるために使用されます。
</p>
<h3 id="limitations">制限事項</h3>
<p>
Image クラスはいくつかの知っておかなければならない制限があります。まず、 GD ライブラリの透過設定はかなりよくありません。
このため、<strong>Image::rotate()</strong> は、透過度をもった背景を扱うことができません。
<strong>imagemagick</strong> にも丸い画像の透過している隅が不透過になるという不具合があります。
</p>
<p>
GD で複数の変換を使用すると、異常な結果になることがあります。
</p>
<h3 id="configuration">設定</h3>
<p>Image クラスは、次の設定オプションを受け付けます。<strong>fuel/core/config/image.php</strong> から <strong>fuel/app/config/image.php</strong> へファイルをコピーしてください。</p>
<table class="config">
<tbody>
<tr class="header">
<th>パラメータ</th>
<th>型</th>
<th>デフォルト</th>
<th>説明</th>
</tr>
<tr>
<th>driver</th>
<td>string</td>
<td><pre class="php"><code>'gd'</code></pre></td>
<td>
有効なライブラリの名前。現在は <strong>'gd'</strong> 、<strong>'imagemagick'</strong> そして <strong>'imagick'</strong> が利用できます。
</td>
</tr>
<tr>
<th>bgcolor</th>
<td>string</td>
<td><pre class="php"><code>null</code></pre></td>
<td>
背景色を 16 進数で指定する (例: #ff0, #4f32de) 。背景を透過させたい場合は、<strong>null</strong> に設定します。
</td>
</tr>
<tr>
<th>watermark_alpha</th>
<td>integer</td>
<td><pre class="php"><code>75</code></pre></td>
<td>
画像に適用されたウォーターマークの透過度。<strong>0-100</strong> の範囲で設定します。
</td>
</tr>
<tr>
<th>quality</th>
<td>integer</td>
<td><pre class="php"><code>100</code></pre></td>
<td>
jpeg 画像と png 画像の品質。
</td>
</tr>
<tr>
<th>filetype</th>
<td>string</td>
<td><pre class="php"><code>null</code></pre></td>
<td>
拡張子が指定されない場合に、優先する画像形式を定義します。<strong>null</strong> が設定されている場合は、元ファイルの拡張子を代わりに継承します。
</td>
</tr>
<tr>
<th>imagemagick_dir</th>
<td>string</td>
<td><pre class="php"><code>'/usr/bin/'</code></pre></td>
<td>
imagemagick の実行ファイルが置かれている場所。先頭にスラッシュを付加する必要があります。
</td>
</tr>
<tr>
<th>temp_dir</th>
<td>string</td>
<td><pre class="php"><code>'/tmp/'</code></pre></td>
<td>
編集中の画像ファイルを格納する一時的なディレクトリ。
</td>
</tr>
<tr>
<th>temp_append</th>
<td>string</td>
<td><pre class="php"><code>'fuel_image'</code></pre></td>
<td>
競合を避けるために一時的な画像ファイルに付加する文字列。
</td>
</tr>
<tr>
<th>debug</th>
<td>boolean</td>
<td><pre class="php"><code>false</code></pre></td>
<td>
ヘッダ設定をスキップし、画像のデバッグ情報を出力するデバッグモードを有効にする。
</td>
</tr>
</tbody>
</table>
<h3 id="presets">プリセット</h3>
<p>
プリセットは、設定の中でタスクのセットを定義することができる Image クラスの機能で、そのプリセットを呼び出すことができます。 例は以下の通り。
</p>
<p>
<strong>app/config/image.php</strong> では、
</p>
<pre class="php"><code>/**
* これらのプリセットは、コントローラの操作で呼び出すことができます。
*/
'presets' => array(
'mypreset' => array(
'bgcolor' => '#f00', // 背景色を赤にする
'filetype' => 'jpg', // jpeg として出力する。
'quality' => 75,
'actions' => array(
array('crop_resize', 200, 200),
array('watermark', '$1'), // 注意 $1 は変数です。
array('output', 'png')
)
)
)</code></pre>
<p>
コントローラでは、
</p>
<pre class="php"><code>// ここの 'watermark.gif' が array('watermark', '$1') の中の $1 として置き換わる
Image::load('filename.gif')->preset('mypreset', 'watermark.gif');</code></pre>
<article>
<h4 class="method" id="method_forge">forge($config = array())</h4>
<p><strong>forge</strong> メソッドは、新しい Image_Driver インスタンスを作成します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$config</kbd></th>
<td><pre class="php"><code>array()</code></pre></td>
<td>Image_Driver 用の設定オプションの配列</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>$image = Image::forge();
// または、オプション設定と一緒に
$image = Image::forge(array(
'quality' => 80
));
$image
->load('image.png')
->output('image.jpeg');</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_config">config($index, $value = null)</h4>
<p>設定オプションの値を変更します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$index</kbd></th>
<td><i>必須</i></td>
<td>設定するインデックスまたは設定オプションの配列。</td>
</tr>
<tr>
<th><kbd>$value</kbd></th>
<td><pre class="php"><code>null</code></pre></td>
<td>$index が配列でない場合、設定する値。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 画像をリサイズし、背景色を変更する。
Image::load('filename.gif')
->config('bgcolor', '#f00')
->resize(100, 100, true, true);</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_load">load($filename, $return_data = false, $force_extension = false)</h4>
<p><strong>load</strong> メソッドは、編集する画像の読み込みを行います。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$filename</kbd></th>
<td><i>必須</i></td>
<td>読み込みたい画像ファイルのパス。</td>
</tr>
<tr>
<th><kbd>$return_data</kbd></th>
<td><pre class="php"><code>false</code></pre></td>
<td>画像データを返すかどうか。GD でのみ動作します。</td>
</tr>
<tr>
<th><kbd>$force_extension</kbd></th>
<td><pre class="php"><code>false</code></pre></td>
<td>画像の拡張子を ($force_extension として) 強制するかどうか。GD でのみ動作します。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 画像を読み込む
Image::load('filename.gif');
// 画像をアップロードし、Image::load メソッドへ直接渡す
Upload::process(array(
'path' => DOCROOT.DS.'files'
));
if (Upload::is_valid())
{
$data = Upload::get_files(0);
// アップロードデータのファイルを使い、
// $force_extension として画像の拡張子を強制することができる。
Image::load($data['file'], false, $data['extension'])
->crop_resize(200, 200)
->save('image');
} </code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_crop">crop($x1, $y1, $x2, $y2)</h4>
<p>座標またはパーセントで指定して画像をトリミングします。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$x1</kbd></th>
<td><i>必須</i></td>
<td>x 軸上の 第 1 座標の位置。</td>
</tr>
<tr>
<th><kbd>$y1</kbd></th>
<td><i>必須</i></td>
<td>y 軸上の 第 1 座標の位置。</td>
</tr>
<tr>
<th><kbd>$x2</kbd></th>
<td><i>必須</i></td>
<td>x 軸上の 第 2 座標の位置。</td>
</tr>
<tr>
<th><kbd>$y2</kbd></th>
<td><i>必須</i></td>
<td>y 軸上の 第 2 座標の位置。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// この例のために、画像の幅と高さは 200x200 とします
// 画像を (20, 20) から (180, 180) までトリミングする。
Image::load('filename.gif')
->crop(20, 20, 180, 180);
// 負の値を使って、画像を (40, 40) から (160, 160) までトリミングする。
Image::load('filename.gif')
->crop(40, 40, -40, -40);
// パーセントと負の値を使って、画像を (30, 30) から (170, 170) までトリミングする。
Image::load('filename.gif')
->crop('15%', '15%', '-15%', '-15%');</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_resize">resize($width, $height = null, $keepar = true, $pad = false)</h4>
<p>画像をリサイズします。幅か高さが null の場合、元のアスペクト比を維持してリサイズします。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$width</kbd></th>
<td><i>必須</i></td>
<td>新しい画像の幅。</td>
</tr>
<tr>
<th><kbd>$height</kbd></th>
<td><pre class="php"><code>null</code></pre></td>
<td>新しい画像の高さ。</td>
</tr>
<tr>
<th><kbd>$keepar</kbd></th>
<td><pre class="php"><code>true</code></pre></td>
<td>true に設定された場合、元のアスペクト比と同じように保つ。</td>
</tr>
<tr>
<th><kbd>$pad</kbd></th>
<td><pre class="php"><code>false</code></pre></td>
<td>true に設定し $keepar も true の場合、設定された背景色で画像を詰める。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 絶対値を使ってリサイズ
Image::load('filename.gif')
->resize(100, 100);
// パーセントを使ってリサイズ
Image::load('filename.gif')
->resize('50%', '50%');
// 画像を合わせるように引き延ばす
Image::load('filename.gif')
->resize(100, 100, false);
// 入力されたサイズとアスペクト比を保つように、画像を詰める。
Image::load('filename.gif')
->resize(100, 200, true, true);</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_crop_resize">crop_resize($width, $height = null)</h4>
<p>画像を指定した幅と高さに合うようにリサイズとトリミングをします。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$width</kbd></th>
<td><i>必須</i></td>
<td>新しい画像の幅。</td>
</tr>
<tr>
<th><kbd>$height</kbd></th>
<td><pre class="php"><code>null</code></pre></td>
<td>新しい画像の高さ。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 例えば、300x200 の画像を 200x200 にトリミングするということは、上下 50px を削除するということになります
Image::load('filename.gif')
->crop_resize(200, 200);</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_rotate">rotate($degrees)</h4>
<p>画像を時計回りに回転します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$degrees</kbd></th>
<td><i>必須</i></td>
<td>画像を回転する角度。数値は正負とも受け入れます。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 時計回りに 90 度回転
Image::load('filename.gif')
->rotate(90);
// 反時計回りに 90 度回転
Image::load('filename.gif')
->rotate(-90);
// (-359, 359) の範囲外の数値でも受け入れます。
Image::load('filename')
->rotate(450);</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_flip">flip($direction)</h4>
<p>画像を垂直方法と水平方向の両方、またはいずれか一方に反転します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$direction</kbd></th>
<td><i>必須</i></td>
<td>反転する方向。"horizontal"、"vertical" または "both" を受け入れます。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 垂直方向に反転
Image::load('filename.gif')
->flip('vertical');
// 水平方向に反転
Image::load('filename.gif')
->flip('horizontal');
// 垂直方向と水平方向に反転
Image::load('filename')
->flip('both');</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_watermark">watermark($filename, $position, $padding = array(5,5))</h4>
<p>画像にウォーターマークを加える。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$filename</kbd></th>
<td><i>必須</i></td>
<td>ウォーターマークとして使用する画像の場所。</td>
</tr>
<tr>
<th><kbd>$position</kbd></th>
<td><i>必須</i></td>
<td>The position of the watermark, accepts "(top|center|middle|bottom|<int>) (left|center|middle|bottom|<int>)".</td>
</tr>
<tr>
<th><kbd>$padding</kbd></th>
<td><pre class="php"><code>array(5,5)</code></pre></td>
<td>
The amount of padding from the edges, in pixels. The first value defines the vertical padding,
the second value the horizontal padding. You can also pass an integer if both have the same value.
</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 画像の左上の角に 15 ピクセルのパディングでウォーターマークを加える
Image::load('filename.gif')
->watermark('watermark.ext', "top left", 15);
// Watermarks the image in the top left corner with top-padding of 5px and a left-padding of 10px
Image::load('filename.gif')
->watermark('watermark.ext', "top left", array(5, 10));
// Watermarks the image in the bottom right corner
Image::load('filename.gif')
->watermark('watermark.ext', "bottom right");
// 画像の中央にウォーターマークを加える
Image::load('filename.gif')
->watermark('watermark.ext', "center middle");
// "center middle" is identical to "center center", "middle middle", or "middle center"
// Watermarks the image in a fixed location, upper left at [10,40], with the default 5px padding
Image::load('filename.gif')
->watermark('watermark.ext', "10 40");</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_border">border($size, $color = null)</h4>
<p>画像に枠を加えます。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$size</kbd></th>
<td><i>必須</i></td>
<td>枠のサイズをピクセルで指定します。</td>
</tr>
<tr>
<th><kbd>$color</kbd></th>
<td><pre class="php"><code>null</code></pre></td>
<td>枠の色、デフォルトは背景色。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 10px の黒い枠を作る
Image::load('filename.gif')
->border(10, '#000000');
// 15px の赤色、緑色、青色の枠を作る。
Image::load('filename.gif')
->border(5, '#FF0000')
->border(5, '#00FF00')
->border(5, '#0000FF');</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_mask">mask($maskimage)</h4>
<p>読み込んだ画像のアルファチャンネルをブレンドしたマスクを画像に適用します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$maskimage</kbd></th>
<td><i>必須</i></td>
<td>マスクする画像の場所。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// mask.ext を使って画像をマスクする
Image::load('filename.gif')
->mask('mask.ext');</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_rounded">rounded($radius, $sides = null, $antialias = null)</h4>
<p>画像に角丸を適用する。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$radius</kbd></th>
<td><i>必須</i></td>
<td>画像に適用する角丸の半径。</td>
</tr>
<tr>
<th><kbd>$sides</kbd></th>
<td><pre class="php"><code>null</code></pre></td>
<td>"tl tr bl br" の中で任意の組み合わせ (スペースで区切る) 、または null で全ての角に適用する。</td>
</tr>
<tr>
<th><kbd>$antialias</kbd></th>
<td><pre class="php"><code>1</code></pre></td>
<td>実際の (角丸の) 円からアンチエイリアスを適用する距離。0 は、アンチエイリアス処理を行わない。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 画像の全ての角に 10px の角丸を行う
Image::load('filename.gif')
->rounded(10);
// 画像の上側に 10px の角丸を行う
Image::load('filename.gif')
->rounded(10, "tl tr");
// 画像の全ての角にアンチエイリアス処理なしで 10px の角丸を行う
Image::load('filename.gif')
->rounded(10, null, 0);</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_sizes">sizes($filename = null)</h4>
<p>現在読み込んでいるまたは $filename で指定された画像のサイズを返します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
<table class="parameters">
<tr>
<th>パラメータ</th>
<th>デフォルト</th>
<th class="description">説明</th>
</tr>
<tr>
<th><kbd>$filename</kbd></th>
<td><pre class="php"><code>null</code></pre></td>
<td>サイズを取得したい画像の場所。</td>
</tr>
</table>
</td>
</tr>
<tr>
<th>返り値</th>
<td>stdClass</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 参考画像のサイズを取得
$sizes = Image::sizes('filename.gif');
// 返り値
Object
(
[width] => 500
[height] => 400
)</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_extension">extension()</h4>
<p>画像タイプを表し、オブジェクト生成時に設定されるファイルの拡張子を返します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>いいえ</td>
</tr>
<tr>
<th>パラメータ</th>
<td>
N/A
</td>
</tr>
<tr>
<th>返り値</th>
<td>string</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// 'jpg' を返す
$ext = Image::load('uploaded_file.jpg')
->extension();
// PNG を JPG として出力する
Image::load('placeholder.png')
->output($ext);
</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_grayscale">grayscale()</h4>
<p>画像をグレースケールに変更します。</p>
<table class="method">
<tbody>
<tr>
<th class="legend">静的</th>
<td>はい</td>
</tr>
<tr>
<th>パラメータ</th>
<td>N/A</td>
</tr>
<tr>
<th>返り値</th>
<td>Image_Driver</td>
</tr>
<tr>
<th>例</th>
<td>
<pre class="php"><code>// グレースケールの画像
Image::load('filename.gif')
->grayscale();</code></pre>
</td>
</tr>
</tbody>
</table>
</article>
<article>
<h4 class="method" id="method_save">save($filename = null, $permissions = null)</h4>
<p>画像を保存します。オプションとしてパーミッションを設定することもできます。</p>
<table class="method">
<tbody>