From 9c9b0a4150e3a83a8ce9f81259f73002b7b9c81e Mon Sep 17 00:00:00 2001 From: Etienne Massip Date: Tue, 10 Jul 2012 20:23:49 +0000 Subject: [PATCH] Code cleanup. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9971 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- lib/plugins/rfpdf/lib/tcpdf.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/plugins/rfpdf/lib/tcpdf.rb b/lib/plugins/rfpdf/lib/tcpdf.rb index 83996bd09..de62859a1 100755 --- a/lib/plugins/rfpdf/lib/tcpdf.rb +++ b/lib/plugins/rfpdf/lib/tcpdf.rb @@ -2064,11 +2064,10 @@ class TCPDF img = Magick::ImageList.new(file) img.format = "PNG" # convert to PNG from gif img.opacity = 0 # PNG alpha channel delete - File.open( @@k_path_cache + File::basename(file), 'w'){|f| + open( @@k_path_cache + File::basename(file), 'w') do |f| f.binmode f.print img.to_blob - f.close - } + end info=parsepng( @@k_path_cache + File::basename(file)); File.delete( @@k_path_cache + File::basename(file)) else -- 2.39.5