0

すべてのページに背景として画像を配置したい。これは私のコードです:

Prawn::Document.generate("#{Rails.root.to_s}/public/#{filename}.pdf", :page_size => [576,576], :left_margin => 50,:right_margin => 50, :page_layout => :portrait, :skip_page_creation => true, :skip_encoding => true ) do |pdf|

  pdf.repeat :all do
    pdf.image open(APP_CONFIG['site_url']+"/images/pdf/bg_blank_high.jpg"), :at => [-pdf.bounds.absolute_left,  pdf.bounds.absolute_top], :width => 576, :height => 576
  end

  pdf.start_new_page(:margin => [75,50,50,50]) 
  pdf.fill_color "8c8464"
  pdf.text story.contents, :size => 12, :align => :left, :leading => 3 
end 

問題は、画像がすべてのページのテキストを上書きすることです。

画像の上にテキストを配置したり、画像を「背面に移動」したり、その他のアイデアを作成したりする方法はありますか?

4

2 に答える 2

1

エビのマニュアルでは、テキストで覆われた画像の例としてこれを示しています。

# images/absolute_position.rb
# One of the options that the image method accepts is :at. If you've read some of the graphics
# examples you are probably already familiar with it. Just provide it the upper-left corner where you
# want the image placed.
# While sometimes useful this option won't be practical. Notice that the cursor won't be moved after the
# image is rendered and there is nothing forbidding the text to overlap with the image.

y_position = cursor
text "The image won't go below this line of text."
image "#{Prawn::BASEDIR}/data/images/fractal.jpg", :at => [200, y_position]
text "And this line of text will go just below the previous one."

したがって、私が言えることから、これは、ドキュメントの作成方法またはカーソルの配置に問題がある可能性があります。

于 2011-08-11T08:21:13.380 に答える
1

繰り返しブロックのコードは、テキストがレンダリングされた後に呼び出されるため、テキストの「上」に配置されているようです。提供されているコード スニペットは、1 つの画像だけに関連しているため機能します。

prawn_document( filename:       "filename.pdf",
                background:     path_background_image) do |pdf|
...

あなたのために働くかもしれません。ただし、提供するのは low_res (72 dpi) の画像のみです。

背景画像の解像度を設定できるようにするためのプル リクエストがあります: https://github.com/sandal/prawn/pull/292

于 2011-12-05T18:19:40.733 に答える