Method: VIPS::CSVWriter#initialize
- Defined in:
- lib/vips/writer.rb
permalink #initialize(image, options = {}) ⇒ CSVWriter
Returns a new instance of CSVWriter.
11 12 13 14 15 16 |
# File 'lib/vips/writer.rb', line 11 def initialize(image, ={}) super image @separator = "\t" self.separator = [:separator] if .has_key?(:separator) end |