使用 Imagemagick 生成具有特定颜色集的白噪声
我正在尝试使用 ImageMagick 生成白噪声,以用作关键帧动画序列的帧。
发现这个教程解释了如何使用 ImageMagick 制作随机噪声 http://brunogirin.blogspot.com/2009/09/making -noise-with-imagemagick.html
显然有效。
我想要的是使用以下颜色生成噪声
- 白色
- 黑色
- 灰色
- 棕色
- 粉色
有没有办法让 Imagemagick 使用这些特定颜色?
谢谢。
I am trying to use ImageMagick to generate white noise, to use as frames for a key frame animation sequence.
Found this tutorial that explains how to make random noise using ImageMagick
http://brunogirin.blogspot.com/2009/09/making-noise-with-imagemagick.html
which obvious works.
What I want is to generate noise using the following colours
- White
- Black
- Grey
- Brown
- Pink
Is there a way to ask Imagemagick to use these specific colours?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的 - 添加噪声需要一个通道,将其设置为 iMagick::Channel_Blue 等,或者使用 imagemagick 命令行,使用 -channel 标志。
Yes- add noise takes a channel, set that to iMagick::Channel_Blue, etc. or with imagemagick commandline, use the -channel flag.