クラス -> class.upload.php
画像をアップロードするクラスの覚書
画像のファイル名を動的に変更する
- $this->file_new_name_body = ’’;
の ” を、変数に書き換える。
その際、function内なので、変数の global 宣言が必要。
画像の上書き
- $this->file_overwrite = false;
元画像を残すかどうか
- $this->file_auto_rename = false;
画像のサイズ変更
- $this->image_resize = false;
画像のサイズ指定
- $this->image_x = 150;
- $this->image_y = 150
画像の縦横比固定
- $this->image_ratio = false
画像の x,y いずれかの方向に合わせたリサイズ指定
- $this->image_ratio_x = false;
- $this->image_ratio_y = false;