Class: AsposeImagingCloud::DngProperties
- Inherits:
-
Object
- Object
- AsposeImagingCloud::DngProperties
- Defined in:
- lib/aspose-imaging-cloud/models/dng_properties.rb
Overview
Represents information about image in DNG format.
Instance Attribute Summary collapse
-
#camera_manufacturer ⇒ Object
Gets or sets the camera manufacturer.
-
#colors_count ⇒ Object
Gets or sets the colors count.
-
#description ⇒ Object
Gets or sets the description of colors (RGBG, RGBE, GMCY or GBTG).
-
#dng_version ⇒ Object
Gets or sets the DNG version.
-
#filters ⇒ Object
Gets or sets the bit mask describing the order of color pixels in the matrix.
-
#is_foveon ⇒ Object
Gets or sets the value indicating whether it’s a Foveon matrix.
-
#model ⇒ Object
Gets or sets the camera model.
-
#raw_count ⇒ Object
Gets or sets the number of RAW images in file (0 means that the file has not been recognized).
-
#software ⇒ Object
Gets or sets the software.
-
#translation_cfa_dng ⇒ Object
Gets or sets the translation array for CFA mosaic of DNG format.
-
#xmp_data ⇒ Object
Gets or sets the XMP data.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
-
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type.
-
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ DngProperties
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility).
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Constructor Details
#initialize(attributes = {}) ⇒ DngProperties
Initializes the object
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 101 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } if attributes.has_key?(:'DngVersion') self.dng_version = attributes[:'DngVersion'] end if attributes.has_key?(:'Description') self.description = attributes[:'Description'] end if attributes.has_key?(:'Model') self.model = attributes[:'Model'] end if attributes.has_key?(:'CameraManufacturer') self.camera_manufacturer = attributes[:'CameraManufacturer'] end if attributes.has_key?(:'IsFoveon') self.is_foveon = attributes[:'IsFoveon'] end if attributes.has_key?(:'Software') self.software = attributes[:'Software'] end if attributes.has_key?(:'RawCount') self.raw_count = attributes[:'RawCount'] end if attributes.has_key?(:'Filters') self.filters = attributes[:'Filters'] end if attributes.has_key?(:'ColorsCount') self.colors_count = attributes[:'ColorsCount'] end if attributes.has_key?(:'XmpData') self.xmp_data = attributes[:'XmpData'] end if attributes.has_key?(:'TranslationCfaDng') if (value = attributes[:'TranslationCfaDng']).is_a?(Array) self.translation_cfa_dng = value end end end |
Instance Attribute Details
#camera_manufacturer ⇒ Object
Gets or sets the camera manufacturer.
42 43 44 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 42 def camera_manufacturer @camera_manufacturer end |
#colors_count ⇒ Object
Gets or sets the colors count.
57 58 59 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 57 def colors_count @colors_count end |
#description ⇒ Object
Gets or sets the description of colors (RGBG, RGBE, GMCY or GBTG).
36 37 38 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 36 def description @description end |
#dng_version ⇒ Object
Gets or sets the DNG version.
33 34 35 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 33 def dng_version @dng_version end |
#filters ⇒ Object
Gets or sets the bit mask describing the order of color pixels in the matrix.
54 55 56 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 54 def filters @filters end |
#is_foveon ⇒ Object
Gets or sets the value indicating whether it’s a Foveon matrix.
45 46 47 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 45 def is_foveon @is_foveon end |
#model ⇒ Object
Gets or sets the camera model.
39 40 41 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 39 def model @model end |
#raw_count ⇒ Object
Gets or sets the number of RAW images in file (0 means that the file has not been recognized).
51 52 53 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 51 def raw_count @raw_count end |
#software ⇒ Object
Gets or sets the software.
48 49 50 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 48 def software @software end |
#translation_cfa_dng ⇒ Object
Gets or sets the translation array for CFA mosaic of DNG format.
63 64 65 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 63 def translation_cfa_dng @translation_cfa_dng end |
#xmp_data ⇒ Object
Gets or sets the XMP data.
60 61 62 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 60 def xmp_data @xmp_data end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 66 def self.attribute_map { :'dng_version' => :'DngVersion', :'description' => :'Description', :'model' => :'Model', :'camera_manufacturer' => :'CameraManufacturer', :'is_foveon' => :'IsFoveon', :'software' => :'Software', :'raw_count' => :'RawCount', :'filters' => :'Filters', :'colors_count' => :'ColorsCount', :'xmp_data' => :'XmpData', :'translation_cfa_dng' => :'TranslationCfaDng' } end |
.swagger_types ⇒ Object
Attribute type mapping.
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 83 def self.swagger_types { :'dng_version' => :'Integer', :'description' => :'String', :'model' => :'String', :'camera_manufacturer' => :'String', :'is_foveon' => :'Integer', :'software' => :'String', :'raw_count' => :'Integer', :'filters' => :'Integer', :'colors_count' => :'Integer', :'xmp_data' => :'String', :'translation_cfa_dng' => :'Array<String>' } end |
Instance Method Details
#==(o) ⇒ Object
Checks equality by comparing each attribute.
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 194 def ==(o) return true if self.equal?(o) self.class == o.class && dng_version == o.dng_version && description == o.description && model == o.model && camera_manufacturer == o.camera_manufacturer && is_foveon == o.is_foveon && software == o.software && raw_count == o.raw_count && filters == o.filters && colors_count == o.colors_count && xmp_data == o.xmp_data && translation_cfa_dng == o.translation_cfa_dng end |
#_deserialize(type, value) ⇒ Object
Deserializes the data based on type
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 248 def _deserialize(type, value) case type.to_sym when :DateTime DateTime.parse(value) when :Date Date.parse(value) when :String value.to_s when :Integer value.to_i when :Float value.to_f when :BOOLEAN if value.to_s =~ /\A(true|t|yes|y|1)\z/i true else false end when :Object # generic object (usually a Hash), return directly value when /\AArray<(?<inner_type>.+)>\z/ inner_type = Regexp.last_match[:inner_type] value.map { |v| _deserialize(inner_type, v) } when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/ k_type = Regexp.last_match[:k_type] v_type = Regexp.last_match[:v_type] {}.tap do |hash| value.each do |k, v| hash[_deserialize(k_type, k)] = _deserialize(v_type, v) end end else # model temp_model = AsposeImagingCloud.const_get(type).new temp_model.build_from_hash(value) end end |
#_to_hash(value) ⇒ Hash
Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value
314 315 316 317 318 319 320 321 322 323 324 325 326 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 314 def _to_hash(value) if value.is_a?(Array) value.compact.map { |v| _to_hash(v) } elsif value.is_a?(Hash) {}.tap do |hash| value.each { |k, v| hash[k] = _to_hash(v) } end elsif value.respond_to? :to_hash value.to_hash else value end end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 225 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| attribute_key = self.class.attribute_map[key] attribute_key = (attribute_key[0, 1].downcase + attribute_key[1..-1]).to_sym if type =~ /\AArray<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[attribute_key].is_a?(Array) self.send("#{key}=", attributes[attribute_key].map { |v| _deserialize($1, v) }) end elsif !attributes[attribute_key].nil? self.send("#{key}=", _deserialize(type, attributes[attribute_key])) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(o) ⇒ Boolean
212 213 214 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 212 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
218 219 220 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 218 def hash [dng_version, description, model, camera_manufacturer, is_foveon, software, raw_count, filters, colors_count, xmp_data, translation_cfa_dng].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 156 def list_invalid_properties invalid_properties = Array.new if @dng_version.nil? invalid_properties.push('invalid value for "dng_version", dng_version cannot be nil.') end if @is_foveon.nil? invalid_properties.push('invalid value for "is_foveon", is_foveon cannot be nil.') end if @raw_count.nil? invalid_properties.push('invalid value for "raw_count", raw_count cannot be nil.') end if @filters.nil? invalid_properties.push('invalid value for "filters", filters cannot be nil.') end if @colors_count.nil? invalid_properties.push('invalid value for "colors_count", colors_count cannot be nil.') end invalid_properties end |
#to_body ⇒ Hash
to_body is an alias to to_hash (backward compatibility)
294 295 296 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 294 def to_body to_hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
300 301 302 303 304 305 306 307 308 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 300 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = self.send(attr) next if value.nil? hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
288 289 290 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 288 def to_s to_hash.to_s end |
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid
183 184 185 186 187 188 189 190 |
# File 'lib/aspose-imaging-cloud/models/dng_properties.rb', line 183 def valid? return false if @dng_version.nil? return false if @is_foveon.nil? return false if @raw_count.nil? return false if @filters.nil? return false if @colors_count.nil? true end |