在rails应用程序中,我使用prawn生成pdf输出。如何更改输出文本的颜色?

最佳答案

你试过吗?下面的代码应该有效:

require "rubygems"
require "prawn"

Prawn::Document.generate "hello.pdf" do
  fill_color "0000ff"
  text "Hello World (in blue)", :at => [200,720], :size => 32
end

关于ruby-on-rails - 设置 Prawn 字体颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2019559/

10-11 02:30