2013-07-10 18 views
-4

如何在PHP中黑白图像不仅仅是灰度,感谢您的考虑,我希望你能帮助我!如何在PHP中使用黑白图像?

+0

IMG_FILTER_GRAYSCALE:将图像转换为灰度。 ? –

+0

这里有一个类似的问题。 http://stackoverflow.com/questions/254388/how-do-you-convert-an-image-to-black-and-white-in-php –

+0

我不能理解该链接中的代码 –

回答

0

尝试使用imagefilter()功能,首先用IMG_FILTER_GRAYSCALE使其灰度,然后用IMG_FILTER_CONTRAST使其全黑和白。

0

使用imagefilter函数。 Go see it

从PHP文件:

IMG_FILTER_COLORIZE: Like IMG_FILTER_GRAYSCALE, except you can specify the color. Use arg1, arg2 and arg3 in the form of red, green, blue and arg4 for the alpha channel. The range for each color is 0 to 255.

使用的参数来调整你的黑色和白色。

P.S.在未来提出问题时,请添加更多细节,以及迄今为止取得的成果。