海外のウェブサイトからサムネイルを生成するための php コードを見つけました。困っている友達はそれを参照してください。
コードは次のとおりです | コードをコピー |
/* * ファイル: SimpleImage.php * 著者: サイモン・ジャービス * 著作権: 2006 Simon Jarvis * 日付: 08/11/06 *リンク: http://www.white-hat-web-design.co.uk/articles/php-image-resizing.php * * このプログラムはフリー ソフトウェアです。再配布したり することができます。 * GNU General Public License の条件に基づいて変更してください * Free Software Foundation によって公開されたバージョン 2 * ライセンス、または (オプションで) 以降のバージョン。 * ※このプログラムは少しでもお役に立てればと思って配信しております * ただし、いかなる保証もありません。 の暗黙の保証もありません。 * 商業性または特定の目的への適合性については、 を参照してください。 * GNU 一般公衆利用許諾書の詳細については: * http://www.gnu.org/licenses/gpl.html * */ クラス SimpleImage { var $image; var $image_type; 関数ロード($ファイル名) { $image_info = getimagesize($filename); $this->image_type = $image_info[2]; If( $this->image_type == IMAGETYPE_JPEG ) { $this->image = imagecreatefromjpeg($filename); } elseif( $this->image_type == IMAGETYPE_GIF ) { $this->image = imagecreatefromgif($filename); } elseif( $this->image_type == IMAGETYPE_PNG ) { $this->image = imagecreatefrompng($filename); } } function save($filename, $image_type=IMAGETYPE_JPEG, $compression=75, $permissions=null) { If( $image_type == IMAGETYPE_JPEG ) { Imagejpeg($this->image,$filename,$compression); elseif( $image_type == IMAGETYPE_GIF ) { Imagegif($this->image,$filename); } elseif( $image_type == IMAGETYPE_PNG ) { Imagepng($this->image,$filename); } if( $permissions != null) { chmod($filename,$permissions); } } 関数出力($image_type=IMAGETYPE_JPEG) { If( $image_type == IMAGETYPE_JPEG ) { imagejpeg($this->image); elseif( $image_type == IMAGETYPE_GIF ) { imagegif($this->image); } elseif( $image_type == IMAGETYPE_PNG ) { imagepng($this->image); } } 関数 getWidth() { 画像を返しますx($this->image); } 関数 getHeight() { 画像を返しますy($this->image); } 関数sizeToHeight($height) { $ratio = $height / $this->getHeight(); $width = $this->getWidth() * $ratio; $this->resize($width,$height); } 関数sizeToWidth($width) { $ratio = $width / $this->getWidth(); $height = $this->getheight() * $ratio; $this->resize($width,$height); } 関数スケール($scale) { $width = $this->getWidth() * $scale/100; $height = $this->getheight() * $scale/100; $this->resize($width,$height); } 関数リサイズ($width,$height) { $new_image = imagecreatetruecolor($width, $height); imagecopyresampled($new_image, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight()); $this->image = $new_image; } } ?> |
使い方
上記のファイルを SimpleImage.php として保存し、スクリプトの使用方法の次の例を見てください。
以下の最初の例では、picture.jpg という名前のファイルを読み込み、幅 250 ピクセル、高さ 400 ピクセルにサイズ変更して、picture2.jpg として再保存します。
复制幣 | |
include('SimpleImage.php'); $image = 新しい SimpleImage(); $image->load('picture.jpg'); $image->resize(250,400); $image->save('picture2.jpg'); ?> |
复制幣 | |
include('SimpleImage.php'); $image = 新しい SimpleImage(); $image->load('picture.jpg'); $image->resizeToWidth(250); $image->save('picture2.jpg'); ?> |