2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
|
# File 'lib/pdfcrowd.rb', line 2203
def convertStringToFile(text, file_path)
if (!(!file_path.nil? && !file_path.empty?))
raise Error.new(Pdfcrowd.create_invalid_value_message(file_path, "convertStringToFile::file_path", "html-to-image", "The string must not be empty.", "convert_string_to_file"), 470);
end
output_file = open(file_path, "wb")
begin
convertStringToStream(text, output_file)
output_file.close()
rescue Error => why
output_file.close()
FileUtils.rm(file_path)
raise
end
end
|