PHPで画像サムネイルを作成する便利クラス『PHP Thumbnailer』
2006年08月31日-
スポンサード リンク
Gen-X-Design | Ian Selby 実PHP Thumbnailer Class
A PHP Class for manipulating images. It features the ability to scale by percentage, width, height, and to create a square crop of an image.
PHPで画像サムネイルを作成する便利クラス『PHP Thumbnailer』。
PHPではイメージ関数が用意されていますが、画像をいざ縮小するってなると結構厄介だったりします。
このクラスの提供するメソッドを使うことで画像のリサイズ・切抜きが簡単に出来ます。
このクラスを使ったサンプルソース
<?php
include('thumbnail.inc.php');
$thumb = new Thumbnail;
$thumb->fileName = '/path/to/file.jpg';
$thumb->init();
$thumb->quality = 80;
//shrink image by 50%
$thumb->percent = 50;
$thumb->resize();
?>
このように、後から見ても分かりやすいソースコードを記述できる上、実装も非常に簡単です。
スポンサード リンク
Advertisements
SITE PROFILE