2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
|
# File 'lib/pdfcrowd.rb', line 2129
def convertUrlToFile(url, file_path)
if (!(!file_path.nil? && !file_path.empty?))
raise Error.new(Pdfcrowd.create_invalid_value_message(file_path, "convertUrlToFile::file_path", "html-to-image", "The string must not be empty.", "convert_url_to_file"), 470);
end
output_file = open(file_path, "wb")
begin
convertUrlToStream(url, output_file)
output_file.close()
rescue Error => why
output_file.close()
FileUtils.rm(file_path)
raise
end
end
|