【问题标题】:Change the color of an image with imagemagick使用 imagemagick 更改图像的颜色
【发布时间】:2012-08-23 07:37:38
【问题描述】:

我想使用 rmagick/imagemagick 更改图像的前景色。更具体地说:我想将 blackwhite glyphicons-halflings 图标(包含在 twitter 引导程序中)转换为深蓝色 glyphicons-halflings 图标。 (如果我能指定 hexcolor 或 RGB 颜色就好了。)

我不知道这是否可能,但我点击了 imagemagick 文档,我发现唯一的东西是convert --size 100x100 xc:skyblue glyphicons-halflings.png -composite foo.png,问题是这仅在您指定尺寸并且它正在改变前景色时才有效不是背景颜色。此外它是天蓝色而不是深蓝色。

那么有谁知道如何将白色或黑色半身人字形转换为蓝色字形半身人图标? (rmagick/ruby 代码 sn-ps 的奖励)

【问题讨论】:

  • 如果您不能提供奖励积分,请不要承诺... :-)
  • 可以在 SE 上提供的唯一奖励积分称为“赏金”:-)
  • 嗨@micheal-perr,请看我的回答。它解决了你的问题吗?请让我知道。态度

标签: ruby twitter-bootstrap imagemagick image-manipulation rmagick


【解决方案1】:

快速回答

convert glyphicons-halflings.png -alpha extract -background blue \
-alpha shape blue-glyphicons-halflings.png

注意:除了blue,您可以使用任何命名颜色、RGB、RGBA 等(参见http://www.imagemagick.org/script/command-line-options.php#fill)。

解释

我们分两步为图标“着色”:

  • 从图标中提取 Alpha 通道; (注意:原始图标的颜色无关紧要,我们正在提取其 Alpha 通道)
  • 在您选择的彩色背景上应用上述蒙版;

有关更多信息,请阅读以下文档:

PS:上述方案在实现jQuery ThemeRoller rewritehttps://github.com/jquery/download.jqueryui.com/issues/77987654324@时研究过

【讨论】:

    【解决方案2】:

    http://www.imagemagick.org/Usage/color_basics/#replace,您可以使用以下命令将图像中所有不是darkblue 的颜色替换为darkblue

    convert glyphicons-halflings.png -fill darkblue +opaque darkblue glyphicons-halflings.png

    如果您想在 ruby​​ 中执行此操作,我建议使用 Minimagick gem https://github.com/minimagic/minimagick,它只需在命令行上调用 convert。根据我的经验,并非所有功能都已从命令行移植到 RMagick

    【讨论】:

      【解决方案3】:

      除了 sguha 的回答 - 这是 Ruby 版本(尽管是 QuickMagick):

      require 'quick_magick'
      source = "images/source.png"
      dest = "images/saved.png"
      foreground = "0000ff" #hex code for your colour
      
      QuickMagick.exec3("convert #{source} -fill \"##{foreground}\" +opaque \"##{foreground}\" #{dest}")
      

      【讨论】:

        猜你喜欢
        • 2019-09-22
        • 2018-03-10
        • 2019-03-23
        • 2018-10-08
        • 1970-01-01
        • 1970-01-01
        • 2013-03-29
        • 1970-01-01
        • 1970-01-01
        相关资源
        最近更新 更多