将网页图像更改为黑白

发布于 2024-10-29 05:59:40 字数 113 浏览 1 评论 0原文

我正在使用 API 从著名网站获取一些照片。我想拍摄这些照片并将其更改为黑白,以便在我的网页中重新显示,但颜色已更改。 有没有可能无需将图像存储在磁盘上就可以做到这一点?

谢谢。 对不起我的英语。

I'm using a API to get some photos from a famous web. And I want to take that pictures and change them to black&white, to re-display in my web but with the colors changed.
Is there any possibility to do it without having to store the images on the disk?

THanks.
Sorry for my English.

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

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

发布评论

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

评论(2

む无字情书 2024-11-05 05:59:41

示例来自 https://www.php.net/manual/en/function。图像过滤器.php

<?php
$im = imagecreatefrompng('yourfile.png');

if($im && imagefilter($im, IMG_FILTER_GRAYSCALE ))
{
    echo 'Image brightness changed.';

    imagepng($im, 'sean.png');
    imagedestroy($im);
}
else
{
    echo 'Image brightness change failed.';
}
?>

example from https://www.php.net/manual/en/function.imagefilter.php

<?php
$im = imagecreatefrompng('yourfile.png');

if($im && imagefilter($im, IMG_FILTER_GRAYSCALE ))
{
    echo 'Image brightness changed.';

    imagepng($im, 'sean.png');
    imagedestroy($im);
}
else
{
    echo 'Image brightness change failed.';
}
?>
唱一曲作罢 2024-11-05 05:59:41

当然,这是可能的,但不要这样做,这几乎肯定会违反该网站的使用条款。

Sure, it's possible, but don't do it, it'll almost certainly be a breach of the terms of use of that site.

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