0
votes
0answers
16 views

ImageMagick: Mapping colours to a parent colour

I'm currently running a ruby script which figures out roughly where a users body is in a photo and then takes a guess at what colour they are wearing. This script loops through their facebook photos ...
0
votes
1answer
77 views

How to use HSLA colors with RMagick?

How to set an arbitrary HSLA color instead of gray20? draw = Magick::Draw.new draw.font_family = 'arial' draw.pointsize = 12 draw.gravity = Magick::CenterGravity draw.annotate(@canvas, size,size, ...
3
votes
1answer
489 views

rmagick pixel color value

I am using rmagick to deal with getting a each single pixel of a bitmap. I need to get the values of colors in depth of 8 (256 colors), but unfortunately when i use pixel.[color] (pixel. red for ...
0
votes
0answers
74 views

How come RMagick::GradientFill.new and HatchFill.new aren't taking random hexidecimal colors in this code sample?

Ok, so I am playing around with RMagick while I get my skills in Ruby back up to with Rails development. My question is, in this code sample I am trying to 1) generate 16 different colors for a ...
1
vote
1answer
126 views

How to generate six random hex colors and put them in a Ruby array?

I'm making a project with RMagick that generates a random banner advertisement with respect to size and colors. First step is this, but it does not work properly. I'm using what's called a ternary ...
1
vote
1answer
310 views

Checking if a color is in a specific range of colors

How would you check if a rgb or hex value is within a specific range of colors? Preferably with ruby. I'm using ruby and rmagick to extract colors (quantize and color_histogram) from images and then ...