5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
|
# File 'lib/pdfcrowd.rb', line 5098
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", "pdf-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
|