PHP 開発サムネイル ファイルを開く
<?php /*打开图片*/ $src = "https://img.php.cn/upload/course/000/000/004/581454f755fb1195.jpg"; $info = getimagesize($src); $type = image_type_to_extension($info[2],false); $fun = "imagecreatefrom{$type}"; $image = $fun($src); ?>
前と同様に、画像を開き、画像を渡して画像情報を取得し、メモリ内に同一の画像を作成します。共存する。