PHP开发图片水印教程之输出图片

header("Content-type:",$info['mime']); $funs = "image{$type}"; $funs($image); $funs($image,'FFFF.'.$type);
/*销毁图片*/ imagedestroy($image);

定义个变量$funcs输出图片然后再销毁图片

对图片添加图片水印完成。

$info['mime']的解释

如果写成header('content_type:image/jpeg') 这样,就表示类型只能是图片类型,而且只能是jpeg格式的。

而写成header('content_type:'.$info['mime']),content_type是有上传的文件决定的,是可变的(如果是png图片就是image/png),更灵活!

print_r($info); Array ( [0] => 850 [1] => 511 [2] => 3 [3] => width="850" height="511" [bits] => 8 [mime] => image/png )

$info['mime'] 就是指那个image/png了就是文件的类型了


Formation continue
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!