Sha256: 02c4511f41c9571d3bda6067959b76f99c387d78e6ddbae5d7a51302e51a564b
Contents?: true
Size: 542 Bytes
Versions: 101
Compression:
Stored size: 542 Bytes
Contents
class Knj::RSVGBIN def self.test_version test_version = %x[rsvg-convert -v] if !test_version.match(/^rsvg-convert version [0-9\.]+$/) raise "No valid version of rsvg-bin was found." end end def self.png_content_from_file(file_from) RSVGBIN.test_version return %x[rsvg-convert #{Strings.unixsafe(file_from)}] end def self.convert_file(file_from, file_to) RSVGBIN.test_version png_content = RSVGBIN.png_content_from_file(file_from) Php.file_put_contents(file_to, png_content) end end
Version data entries
101 entries across 101 versions & 1 rubygems