transparent text with rmagick?

D

dc

hi -

(this maybe more an imagemagick q that a ruby one, but here goes ..)

using rmagick / I have a small script for generating some type, but I
cannot get the type to come out as transparent png - it comes out just
on solid white .

does this have to be done with masks and compositing? there are a
number of methods that look like they should work (transparent_color
etc), but dont seem to...

is the library broken or am i doing something wrong?

tx,

/dc

---------
require 'rubygems'
require "RMagick"
include Magick

outfile = "output/matte.png"

drawObj = Magick::Draw.new
drawObj.font = './fonts/Ghoul.ttf'
drawObj.pointsize=30
drawObj.fill = '#44ff00'

buffer = Magick::Image.new(250,100)
drawObj.text(20,50, "hello world")
drawObj.matte(3,3,PaintMethod::ReplaceMethod)
drawObj.draw(buffer)
buffer.opacity = 1
buffer.transparent_color = '#000000'
buffer.matte = true
buffer.write(outfile)

system("open #{outfile}")



--
 
T

Timothy Hunter

dc said:
hi -

(this maybe more an imagemagick q that a ruby one, but here goes ..)

using rmagick / I have a small script for generating some type, but I
cannot get the type to come out as transparent png - it comes out just
on solid white .

does this have to be done with masks and compositing? there are a
number of methods that look like they should work (transparent_color
etc), but dont seem to...

is the library broken or am i doing something wrong?

tx,

/dc
Set the background color to "none" when you create the image:

buffer = Magick::Image.new(250, 250) {self.background_color = 'none'}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top