imagejpeg() - gd函数(图像处理)
imagejpeg()
(PHP 4, PHP 5, PHP 7)
输出图象到浏览器或文件。
说明
imagejpeg(resource $image[,string $filename[,int $quality]]): boolimagejpeg()从$image图像以$filename为文件名创建一个JPEG图像。
参数
$image由图象创建函数(例如imagecreatetruecolor())返回的图象资源。
$filename文件保存的路径,如果未设置或为NULL
,将会直接输出原始图象流。
如果要省略这个参数而提供$quality参数,使用NULL。
$quality$quality为可选项,范围从 0(最差质量,文件更小)到 100(最佳质量,文件最大)。默认为 IJG 默认的质量值(大约 75)。
返回值
成功时返回TRUE
,或者在失败时返回FALSE
。
范例
输出 JPEG 图像
以上例程的输出类似于:
保存一副 JPEG 图像
以 75%的图像质量输出图像
注释
Note:JPEG 支持仅在 PHP 与 GD-1.8 或更高版本一起编译时可用。Note:
如果想输出渐进式 JPEG,需要用imageinterlace()函数将隔行扫描比特置位。
参见
imagepng()
以 PNG 格式将图像输出到浏览器或文件imagegif()
输出图象到浏览器或文件。imagewbmp()
以 WBMP 格式将图像输出到浏览器或文件imageinterlace()
激活或禁止隔行扫描imagetypes()
返回当前 PHP 版本所支持的图像类型
I didn't find any example like this on the Web, so I mixed pieces together.. hope this will save time to other people! Here's a complete solution to READ any image (gif jpg png) from the FILESYSTEM, SCALE it to a max width/height, SAVE the scaled image to a BLOB field keeping the original image type. Quite tricky.. So, let's suppose you have a form where a user can upload an image, and you have to scale it and save it into your database.
If string $filename is given and it exists, it will be overwritten.
[[Editor's note: removed the header() call since it is not required when outputting inline image-data]] One single code line, solve-me after 3 hours of blind search! here is: ... ob_start(); imagejpeg( $img, NULL, 100 ); imagedestroy( $img ); $i = ob_get_clean(); echo ""; //saviour line!
Regarding Carl Gieringer's comment, it is possible to have PHP files in utf-8. Just make sure the editor does not output BOM, which is unnecessary in utf-8 anyway. Except for any editors from Microsoft, most programmer's editors that supports utf allows you to surpress BOM.
Here is the simple, but powerful script for creating thumbnails on the fly. You can include the script directly to www page - just put it in "Content-type: image/jpeg"); $im = imagecreatefromjpeg($pic); $orange = imagecolorallocate($im, 220, 210, 60); $px = (imagesx($im) - 7.5 * strlen($string)) / 2; $old_x=imageSX($im); $old_y=imageSY($im); $new_w=(int)($width); if (($new_w$old_x)) { $new_w=$old_x; } $new_h=($old_x*($new_w/$old_x)); if ($old_x > $old_y) { $thumb_w=$new_w; $thumb_h=$old_y*($new_h/$old_x); } if ($old_x
For those looking to grab the resolution of a JPEG image without using GD nor ImageMagic... I wrote this simple function. Too bad GD doesn't have this very simple function for us to use...
I worked out a script that allows the transfer of alphanumeric data to be placed on an image. The HTML feature is img src and the php feature is imagettftext. This simple code will increment from 1 to 3 on images. code:
鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com
免责声明:我们致力于保护作者版权,注重分享,当前被刊用文章因无法核实真实出处,未能及时与作者取得联系,或有版权异议的,请联系管理员,我们会立即处理! 部分文章是来自自研大数据AI进行生成,内容摘自(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供学习参考,不准确地方联系删除处理!邮箱:344225443@qq.com)
图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!
内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)