/** * 画像のサイズを変形して保存する * @param string $srcPath * @param string $dstPath * @param int $width * @param int $height */ function transform_image_size($srcPath, $dstPath, $width, $height) { list($originalWidth, $originalHeight, $type) = getimagesize($srcPath); switch ($type) { case IMAGETYPE_JPEG: $source = imagecreatefromjpeg($srcPath); break; case IMAGETYPE_PNG: $source = imagecreatefrompng($srcPath)