`

Call to undefined function imagecreatefromjpeg() in

    博客分类:
  • php
 
阅读更多

在php的程序中,如果出现 Call to undefined function imagecreatefromjpeg()  错误,可能是由于php没有启动gd2.dll  模块

 

解决步骤如下:

1、找到apache bin目录下的  php.ini 配置文件  找到  ;extension=php_gd2.dll 配置,把这个模块打开,就可以了extension=php_gd2.dll

2、在安装的php文件夹目录下,找到对应的php.ini配置文件,找到  ;extension=php_gd2.dll 配置,把这个模块打开,就可以了extension=php_gd2.dll

 

这样图片就可以上传,图片可以生产了

 

分享到:
评论

相关推荐

    Defeating-PHP-GD-imagecreatefromjpeg:利用PHP-GD内置函数imagecreatefromjpeg()中的缺陷的概念验证

    利用PHP-GD imagecreatefromjpeg()函数利用PHP-GD内置函数imagecreatefromjpeg()中的缺陷的概念验证。 受到Reddit关于我先前关于利用imagecreatefromgif()PHP-GD函数的讨论的评论之一的启发。警告:此POC仅...

    imagecreatefromjpeg、imagecreatefrompng、imagecreatefromgif绕过

    `imagecreatefrompng` 与 `imagecreatefromjpeg` 类似,它用于解析PNG图像文件并创建相应的图像资源。PNG文件格式支持透明度和颜色层次,因此在需要这些特性的地方很受欢迎。但是,PNG文件头也可以被篡改,插入恶意...

    常用类 数据库连接类 分页类

    $this->image = imagecreatefromjpeg($image_path); } // 缩放图像 public function resize($new_width, $new_height) { ... } // 添加水印 public function addWatermark($watermark_path, $position) { ...

    php生成任意尺寸图片的缩略图类

    $generator = new ThumbnailGenerator('path/to/source.jpg', 200, 200); $generator->generate(); ``` 以上代码提供了一个基础的缩略图生成器类,可以根据实际需求进行扩展,例如添加错误处理、支持更多图像格式、...

    php 5 in practice+源码

    `imagecreatefromjpeg()`, `imagepng()`, `imagecopyresampled()`等函数是常用图像处理函数。 通过学习这些章节和源代码,开发者可以深入理解PHP 5的各个方面,从而提高编程效率,写出更高效、更安全的代码。同时,...

    PHP载入图像imagecreatefrom_gif_jpeg_png系列函数用法分析

    主要介绍了PHP载入图像imagecreatefrom_gif_jpeg_png系列函数用法,结合实例形式分析了php的图像载入函数imagecreatefromgif、imagecreatefromjpeg、imagecreatefrompng、imagecreatefromwbmp及imagecreatefromstring...

    php利用gd生成缩略图 并保存原图

    function create_thumbnail($src_path, $dst_path, $width) { $src = imagecreatefromjpeg($src_path); $src_width = imagesx($src); $src_height = imagesy($src); $ratio = $src_width / $src_height; $thumb...

    PHP生成缩略图类【可用】

    function create_thumbnail($src, $dst, $max_width, $max_height) { list($width, $height) = getimagesize($src); $ratio = min($max_width / $width, $max_height / $height); $new_width = $width * $ratio;...

    PHP-jQuery上传图片并裁切

    $image = imagecreatefromjpeg($target_file); // 加载上传的图片 $cropped_image = imagecreatetruecolor($width, $height); // 创建新图像 imagecopyresampled($cropped_image, $image, 0, 0, $x, $y, $width, $...

    php上传类(生成缩略图)

    $source = imagecreatefromjpeg($file['tmp_name']); $width = imagesx($source); $height = imagesy($source); $ratio = $width / $height; // 假设我们需要一个宽度为200像素的缩略图,保持原比例 $thumb_width =...

    吐血推荐--PHP生成图片缩略图源代码

    $this->im = ImageCreateFromJPEG($this->srcimg); break; case 'png': $this->im = ImageCreateFromPNG($this->srcimg); break; // ... 其他支持的格式 ... } } function dst_img($dstpath) { $this->...

    jQuery php图片上传预览插件_头像上传预览代码

    $source = imagecreatefromjpeg($imagePath); // 从上传的JPEG文件中创建源图像 imagecopyresampled($thumbnail, $source, 0, 0, 0, 0, 100, 100, $file['width'], $file['height']); // 裁剪并缩放 imagejpeg($...

    PHP简单遍历文件批量加文字水印,图片水印

    function traverseDirectory($dir) { $iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir)); foreach ($iterator as $file) { // 在这里处理每个文件,例如添加水印 processFile($...

    php图片处理函数获取类型及扩展名实例

    分享给大家供大家参考。 具体实现代码如下: 复制代码 代码如下:image_type=image_type_to_...$image = imagecreatefromjpeg($file); header(‘content-type: ‘ . image_type_to_mime_type(imagetype_wbmp)); $fp=

    php图形处理教程-php生成图片[借鉴].pdf

    function Loadpng($imgname) { $im = @ImageCreateFromPNG($imgname); if (!$im) { // 载入图像失败 $im = ImageCreate(400, 30); $bgc = ImageColorAllocate($im, 255, 255, 255); $tc = ImageColorAllocate...

    php+jquery图片裁剪代码.

    done: function(data) { // 裁剪完成后,data包含裁剪的坐标和比例信息 } }); ``` 3. **后端处理** 当用户完成裁剪后,前端需要将裁剪的坐标和比例信息发送到服务器。这通常通过AJAX实现,使用jQuery的`$....

    PHP图片添加水印功能示例小结

    分享给大家供大家参考,具体如下: ...function addWaterMap($source_img, $water_map) { $img = imagecreatefromjpeg($source_img); //读取原图 $img_x = imagesx($img); //原图宽 $img_y = imagesy($

    php上传图片并在线截取.zip

    上述代码中,`imagecreatefromjpeg()`函数用于打开上传的图片,`imagecreatetruecolor()`创建一个新的空白图像,`imagecopyresampled()`则执行实际的裁剪操作。最后,使用`imagejpeg()`保存裁剪后的图片,并释放内存...

    图片保存类

    $this->resource = imagecreatefromjpeg($filename); } else if (pathinfo($filename, PATHINFO_EXTENSION) == 'png') { $this->resource = imagecreatefrompng($filename); } } public function save($...

    基于PHP实现等比压缩图片大小

    $im = imagecreatefromjpeg('D:\phpplace\.jpeg'); resizeImage($im,,,'xinde','.jpg'); function resizeImage($im,$maxwidth,$maxheight,$name,$filetype) { $pic_width = imagesx($im); $pic_height = imagesy($im...

Global site tag (gtag.js) - Google Analytics