我使用带有ruby,PDFCreator,Microsoft Office和OpenOffice的Windows Web Server 2008自动将文件转换为PDF。该设置适用于Microsoft Office文件,但我无法使用OpenOffice文件(例如.sxw)自动运行。当我手动执行此操作时,PDFCreator能够毫无问题地转换.sxw文件,但是当我使用下面的ruby脚本尝试它时会抛出以下错误。
错误:1说明:ActiveX-Server尚未启动!请使用函数\“cStart()\”启动ActiveX服务器!
def convert( filename, data )
require 'win32ole'
dirpath = File.join( '/', 'files' )
filepath = File.join( dirpath, filename )
puts filepath
filepath_out = File.join( dirpath, 'output.pdf' )
begin
File.open( filepath, 'wb+' ) { |f| f.write( data ) }
puts File.exists?( filepath ).inspect
pdfcreator = WIN32OLE.new( 'PDFCreator.clsPDFCreator' )
event = WIN32OLE_EVENT.new( pdfcreator )
event.on_event( 'eReady' ) do
File.open( filepath_out, 'rb' ) { |f| update_attribute( :data_converted, f.read ) }
$printed = true
end
event.on_event( 'eError' ) do
pdfcreator.cClose()
raise 'error'
end
if !pdfcreator.cIsPrintable( filepath )
raise 'error'
end
pdfcreator.cStart( '/NoProcessingAtStartup' )
pdfcreator.setproperty( 'cOption', 'UseAutosave', 1 )
pdfcreator.setproperty( 'cOption', 'UseAutosaveDirectory', 1 )
pdfcreator.setproperty( 'cOption', 'AutosaveFormat', 0 )
pdfcreator.setproperty( 'cDefaultprinter', 'PDFCreator' )
pdfcreator.cClearCache()
pdfcreator.setproperty( 'cPrinterStop', false )
pdfcreator.setproperty( 'cOption', 'AutosaveDirectory', File.dirname( filepath_out ) )
pdfcreator.setproperty( 'cOption', 'AutosaveFilename', File.basename( filepath_out ) )
$printed = false
pdfcreator.cPrintfile( "C:\\files" + File.basename( filepath ) )
started_at = Time.new
loop {
pdfcreator.cOption( 'UseAutosave' ) # noop to get ready event
break if $printed
if ( Time.new - started_at )>TIMEOUT
raise 'timeout'
end
sleep 0.5
}
rescue => e
raise e
ensure
begin
pdfcreator.cClearCache()
pdfcreator.cClose()
rescue
end
begin
File.delete( filepath ) if File.exists?( filepath )
File.delete( filepath_out ) if File.exists?( filepath_out )
rescue
end
end
有什么想法吗?
谢谢, Peder
答案 0 :(得分:1)
此脚本调用cIsPrintable
并在Windows注册表中搜索名为“Print”的命令。
你必须安装了一些导致在Windows注册表中创建此命令的东西,这就是为什么它现在可以正常工作。
答案 1 :(得分:0)
奇怪。现在它正在运作!