php jquery jcrop 和 imagejpeg

发布于 2024-10-20 05:22:00 字数 694 浏览 1 评论 0原文

这是我第一次接触 GD 的东西。 我正在尝试使用 jcrop jquery 插件实现调整大小和裁剪。 我仍然不知道如何保存裁剪后的图像。 jcrop 网站上没有太多相关内容。这是我的代码:

if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $targ_w = $targ_h = 150;
    $jpeg_quality = 90;

    $src = 'demo_files/flowers.jpg';
    $img_r = imagecreatefromjpeg($src);
    $dst_r = ImageCreateTrueColor( $targ_w, $targ_h );

    imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'],
            $targ_w,$targ_h,$_POST['w'],$_POST['h']);

     header('Content-type: image/jpeg');

     imagejpeg($dst_r,null,$jpeg_quality);

    exit;
}

如何使用 imagejpeg($dst_r,null,$jpeg_quality) 来实际写入图像文件并将其路径保存在我的数据库中?

提前致谢。

毛罗

That's my first approach with GD stuff.
I'm trying to implement resize and crop using jcrop jquery plugin.
I still can't figure out how to save the image I've cropped. On the jcrop site there's not much about it. here's my code:

if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $targ_w = $targ_h = 150;
    $jpeg_quality = 90;

    $src = 'demo_files/flowers.jpg';
    $img_r = imagecreatefromjpeg($src);
    $dst_r = ImageCreateTrueColor( $targ_w, $targ_h );

    imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'],
            $targ_w,$targ_h,$_POST['w'],$_POST['h']);

     header('Content-type: image/jpeg');

     imagejpeg($dst_r,null,$jpeg_quality);

    exit;
}

What do I do with imagejpeg($dst_r,null,$jpeg_quality) in order to actually write the image file and save its path in my db?

Thanks in advance.

Mauro

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忱杏 2024-10-27 05:22:00

如果您想保存文件而不是输出它,请执行以下两件事:

  • 删除行 header('Content-type: image/jpeg');
  • 将其后的下一行更改为 imagejpeg($dst_r, 'path/to/output.jpg', $jpeg_quality);

请参阅 php.net/imagejpeg

If you want to save the file instead of outputting it, do these two things:

  • Remove the line header('Content-type: image/jpeg');
  • Change the next line after that to imagejpeg($dst_r, 'path/to/output.jpg', $jpeg_quality);

See the docs for the imagejpeg() function at php.net/imagejpeg

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文