English 中文(简体)
RMagick 的端口图像Magick 命令
原标题:Port ImageMagick commands to RMagick

我正在用图像Magick 命令进行图像处理, 我想把它们移植到 RMagick 。 任务的目标是拍照, 并为隐私目的将给定区域( 一个或多个) 像素late 。

以下是我的bash 脚本 ( script.sh ), 使用 转换 命令非常有效 :

convert invoice.png -scale 10% -scale 1000% pixelated.png
convert invoice.png -gamma 0 -fill white -draw "rectangle 35, 110, 215, 250" mask.png
convert invoice.png pixelated.png mask.png -composite result.png

现在我要用图像Magick 来创建此脚本的 Ruby 版本。 以下是我现在拥有的 :

require  rmagick 

# pixelate_areas( invoice.png , [ [ x1, y1, width, height ] ])
def pixelate_areas(image_path, areas)
  image     = Magick::Image::read(image_path).first
  pixelated = image.scale(0.1).scale(10)
  mask      = Magick::Image.new(image.columns, image.rows) { self.background_color =  #000  }

  areas.each do |coordinates|
    area = Magick::Image.new(coordinates[2], coordinates[3]) { self.background_color =  #fff  }
    mask.composite!(area, coordinates[0], coordinates[1], Magick::OverCompositeOp)
  end

  # Now, how can I merge my 3 images?
  # I need to extract the part of pixelated that overlap with the white part of the mask (everything else must be transparent).
  # Then I have to superpose the resulting image to the original (it s the easy part).
end

如你所见,我停留在最后一步。我需要用 rel="nofollow"我的原始图片 ,我的像素图片 以便有?

我怎样才能用面罩的白色部分和像素图片的重叠来构建图像。 就像 https:// i.sstatic.net/kKKSfk.png” rel = “ nofollow” 一样, 只要透明, 而不是黑色?

最佳回答

首先, 您为什么在已经找到有效的东西时将命令移植到 RMagick? shash 版本是简短和易懂的 。 如果这只是您重新移植的大脚本的一部分, 请不要害怕 < code> system ()

话虽如此,但这里有一个不同的台词,我相信它能够更直接地完成你试图完成的任务。

require  RMagick 

def pixelate_area(image_path, x1, y1, x2, y2)
  image          = Magick::Image::read(image_path).first
  sensitive_area = image.crop(x1, y1, x2 - x1, y2 - y1).scale(0.1).scale(10)

  image.composite!(sensitive_area, x1, y1, Magick::AtopCompositeOp)
  image.write( result.png ) { self.depth = image.depth }
end

这似乎与你最初的打击命令相同:

pixelate_area( invoice.png , 35, 110, 215, 250)

既然它看起来要处理要模糊的多个区域, 这里的版本将包含一系列区域( 每个区域为 < code> [x1, y1, y1, x2, y2, y2] ) :

def pixelate_areas(image_path, areas)
  image = Magick::Image::read(image_path).first

  areas.each do |area|
    x1, y1, x2, y2 = area

    sensitive_area = image.crop(x1, y1, x2 - x1, y2 - y1).scale(0.1).scale(10)
    image.composite!(sensitive_area, x1, y1, Magick::AtopCompositeOp)
  end

  image.write( result.png ) { self.depth = image.depth }
end
问题回答

暂无回答




相关问题
Ruby parser in Java

The project I m doing is written in Java and parsers source code files. (Java src up to now). Now I d like to enable parsing Ruby code as well. Therefore I am looking for a parser in Java that parses ...

rails collection_select vs. select

collection_select and select Rails helpers: Which one should I use? I can t see a difference in both ways. Both helpers take a collection and generates options tags inside a select tag. Is there a ...

RubyCAS-Client question: Rails

I ve installed RubyCAS-Client version 2.1.0 as a plugin within a rails app. It s working, but I d like to remove the ?ticket= in the url. Is this possible?

Ordering a hash to xml: Rails

I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml

multiple ruby extension modules under one directory

Can sources for discrete ruby extension modules live in the same directory, controlled by the same extconf.rb script? Background: I ve a project with two extension modules, foo.so and bar.so which ...

Text Editor for Ruby-on-Rails

guys which text editor is good for Rubyonrails? i m using Windows and i was using E-Texteditor but its not free n its expired now can anyone plese tell me any free texteditor? n which one is best an ...

热门标签