Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的家伙我写了这段代码:
require 'RMagick' include Magick img = Image.read("small_img.gif").first img.posterize img.display exit
图像的结果不会改变我已经测试了 blur_image,oil_paint,其他但仅旋转不起作用!从我那里工作,也许代码写得太糟糕了?ps对不起我的英语不好
这条线
img.posterize
返回一个新的图像对象,它不会改变图像。因此,如果您执行以下操作
new_img = img.posterize new_img.display
你应该看到你的测试结果。
这同样适用于许多 rmagic 转换。