class AsposeSlidesCloud::PictureFill
Picture fill.
Attributes
Base 64 image data.
Percentage of image height that is cropped from the bottom.
Percentage of image height that is cropped from the left.
Percentage of image height that is cropped from the right.
Percentage of image height that is cropped from the top.
true to delete picture cropped areas on save.
Picture resolution.
Internal image link.
Image
transform effects.
Fill mode.
true to compress the picture image with the specified resolution (in dpi) on save.
SVG image data.
The way texture is aligned within the shape. This setting controls the starting point of the texture pattern and how it repeats across the shape.
Flips the texture tile around its horizontal, vertical or both axis.
The horizontal offset of the texture from the shape’s origin in points. A positive value moves the texture to the right, while a negative value moves it to the left.
The vertical offset of the texture from the shape’s origin in points. A positive value moves the texture down, while a negative value moves it up.
The horizontal scale for the texture fill as a percentage.
The vertical scale for the texture fill as a percentage.
Public Class Methods
Source
# File lib/aspose_slides_cloud/models/picture_fill.rb, line 83 def self.attribute_map super.merge({ :'crop_bottom' => :'CropBottom', :'crop_left' => :'CropLeft', :'crop_right' => :'CropRight', :'crop_top' => :'CropTop', :'dpi' => :'Dpi', :'tile_offset_x' => :'TileOffsetX', :'tile_offset_y' => :'TileOffsetY', :'tile_scale_x' => :'TileScaleX', :'tile_scale_y' => :'TileScaleY', :'tile_alignment' => :'TileAlignment', :'tile_flip' => :'TileFlip', :'image' => :'Image', :'base64_data' => :'Base64Data', :'svg_data' => :'SvgData', :'delete_picture_cropped_areas' => :'DeletePictureCroppedAreas', :'resolution' => :'Resolution', :'picture_fill_mode' => :'PictureFillMode', :'image_transform_list' => :'ImageTransformList', }) end
Attribute mapping from ruby-style variable name to JSON key.
AsposeSlidesCloud::FillFormat::attribute_map
Source
# File lib/aspose_slides_cloud/models/picture_fill.rb, line 132 def initialize(attributes = {}) super if attributes.has_key?(:'CropBottom') self.crop_bottom = attributes[:'CropBottom'] end if attributes.has_key?(:'CropLeft') self.crop_left = attributes[:'CropLeft'] end if attributes.has_key?(:'CropRight') self.crop_right = attributes[:'CropRight'] end if attributes.has_key?(:'CropTop') self.crop_top = attributes[:'CropTop'] end if attributes.has_key?(:'Dpi') self.dpi = attributes[:'Dpi'] end if attributes.has_key?(:'TileOffsetX') self.tile_offset_x = attributes[:'TileOffsetX'] end if attributes.has_key?(:'TileOffsetY') self.tile_offset_y = attributes[:'TileOffsetY'] end if attributes.has_key?(:'TileScaleX') self.tile_scale_x = attributes[:'TileScaleX'] end if attributes.has_key?(:'TileScaleY') self.tile_scale_y = attributes[:'TileScaleY'] end if attributes.has_key?(:'TileAlignment') self.tile_alignment = attributes[:'TileAlignment'] end if attributes.has_key?(:'TileFlip') self.tile_flip = attributes[:'TileFlip'] end if attributes.has_key?(:'Image') self.image = attributes[:'Image'] end if attributes.has_key?(:'Base64Data') self.base64_data = attributes[:'Base64Data'] end if attributes.has_key?(:'SvgData') self.svg_data = attributes[:'SvgData'] end if attributes.has_key?(:'DeletePictureCroppedAreas') self.delete_picture_cropped_areas = attributes[:'DeletePictureCroppedAreas'] end if attributes.has_key?(:'Resolution') self.resolution = attributes[:'Resolution'] end if attributes.has_key?(:'PictureFillMode') self.picture_fill_mode = attributes[:'PictureFillMode'] end if attributes.has_key?(:'ImageTransformList') if (value = attributes[:'ImageTransformList']).is_a?(Array) self.image_transform_list = value end end self.type = 'Picture' end
Initializes the object @param [Hash] attributes Model attributes in the form of hash
AsposeSlidesCloud::FillFormat::new
Source
# File lib/aspose_slides_cloud/models/picture_fill.rb, line 107 def self.swagger_types super.merge({ :'crop_bottom' => :'Float', :'crop_left' => :'Float', :'crop_right' => :'Float', :'crop_top' => :'Float', :'dpi' => :'Integer', :'tile_offset_x' => :'Float', :'tile_offset_y' => :'Float', :'tile_scale_x' => :'Float', :'tile_scale_y' => :'Float', :'tile_alignment' => :'String', :'tile_flip' => :'String', :'image' => :'ResourceUri', :'base64_data' => :'String', :'svg_data' => :'String', :'delete_picture_cropped_areas' => :'BOOLEAN', :'resolution' => :'Float', :'picture_fill_mode' => :'String', :'image_transform_list' => :'Array<ImageTransformEffect>', }) end
Attribute type mapping.
AsposeSlidesCloud::FillFormat::swagger_types
Public Instance Methods
Source
# File lib/aspose_slides_cloud/models/picture_fill.rb, line 293 def ==(o) return true if self.equal?(o) self.class == o.class && type == o.type && crop_bottom == o.crop_bottom && crop_left == o.crop_left && crop_right == o.crop_right && crop_top == o.crop_top && dpi == o.dpi && tile_offset_x == o.tile_offset_x && tile_offset_y == o.tile_offset_y && tile_scale_x == o.tile_scale_x && tile_scale_y == o.tile_scale_y && tile_alignment == o.tile_alignment && tile_flip == o.tile_flip && image == o.image && base64_data == o.base64_data && svg_data == o.svg_data && delete_picture_cropped_areas == o.delete_picture_cropped_areas && resolution == o.resolution && picture_fill_mode == o.picture_fill_mode && image_transform_list == o.image_transform_list end
Checks equality by comparing each attribute. @param [Object] Object to be compared
Source
# File lib/aspose_slides_cloud/models/picture_fill.rb, line 319 def eql?(o) self == o end
@see the ‘==` method @param [Object] Object to be compared
Source
# File lib/aspose_slides_cloud/models/picture_fill.rb, line 325 def hash [type, crop_bottom, crop_left, crop_right, crop_top, dpi, tile_offset_x, tile_offset_y, tile_scale_x, tile_scale_y, tile_alignment, tile_flip, image, base64_data, svg_data, delete_picture_cropped_areas, resolution, picture_fill_mode, image_transform_list].hash end
Calculates hash code according to all attributes. @return [Fixnum] Hash code
Source
# File lib/aspose_slides_cloud/models/picture_fill.rb, line 213 def list_invalid_properties invalid_properties = super if @crop_bottom.nil? invalid_properties.push('invalid value for "crop_bottom", crop_bottom cannot be nil.') end if @crop_left.nil? invalid_properties.push('invalid value for "crop_left", crop_left cannot be nil.') end if @crop_right.nil? invalid_properties.push('invalid value for "crop_right", crop_right cannot be nil.') end if @crop_top.nil? invalid_properties.push('invalid value for "crop_top", crop_top cannot be nil.') end if @dpi.nil? invalid_properties.push('invalid value for "dpi", dpi cannot be nil.') end if @picture_fill_mode.nil? invalid_properties.push('invalid value for "picture_fill_mode", picture_fill_mode cannot be nil.') end invalid_properties end
Show invalid properties with the reasons. Usually used together with valid? @return Array for valid properties with the reasons
AsposeSlidesCloud::FillFormat#list_invalid_properties
Source
# File lib/aspose_slides_cloud/models/picture_fill.rb, line 283 def picture_fill_mode=(picture_fill_mode) validator = EnumAttributeValidator.new('String', ['Tile', 'Stretch']) unless validator.valid?(picture_fill_mode) fail ArgumentError, 'invalid value for "picture_fill_mode", must be one of #{validator.allowable_values}.' end @picture_fill_mode = picture_fill_mode end
Custom attribute writer method checking allowed values (enum). @param [Object] picture_fill_mode
Object to be assigned
Source
# File lib/aspose_slides_cloud/models/picture_fill.rb, line 263 def tile_alignment=(tile_alignment) validator = EnumAttributeValidator.new('String', ['TopLeft', 'Top', 'TopRight', 'Left', 'Center', 'Right', 'BottomLeft', 'Bottom', 'BottomRight', 'NotDefined']) unless validator.valid?(tile_alignment) fail ArgumentError, 'invalid value for "tile_alignment", must be one of #{validator.allowable_values}.' end @tile_alignment = tile_alignment end
Custom attribute writer method checking allowed values (enum). @param [Object] tile_alignment
Object to be assigned
Source
# File lib/aspose_slides_cloud/models/picture_fill.rb, line 273 def tile_flip=(tile_flip) validator = EnumAttributeValidator.new('String', ['NoFlip', 'FlipX', 'FlipY', 'FlipBoth', 'NotDefined']) unless validator.valid?(tile_flip) fail ArgumentError, 'invalid value for "tile_flip", must be one of #{validator.allowable_values}.' end @tile_flip = tile_flip end
Custom attribute writer method checking allowed values (enum). @param [Object] tile_flip
Object to be assigned
Source
# File lib/aspose_slides_cloud/models/picture_fill.rb, line 244 def valid? return false if !super return false if @crop_bottom.nil? return false if @crop_left.nil? return false if @crop_right.nil? return false if @crop_top.nil? return false if @dpi.nil? tile_alignment_validator = EnumAttributeValidator.new('String', ['TopLeft', 'Top', 'TopRight', 'Left', 'Center', 'Right', 'BottomLeft', 'Bottom', 'BottomRight', 'NotDefined']) return false unless tile_alignment_validator.valid?(@tile_alignment) tile_flip_validator = EnumAttributeValidator.new('String', ['NoFlip', 'FlipX', 'FlipY', 'FlipBoth', 'NotDefined']) return false unless tile_flip_validator.valid?(@tile_flip) return false if @picture_fill_mode.nil? picture_fill_mode_validator = EnumAttributeValidator.new('String', ['Tile', 'Stretch']) return false unless picture_fill_mode_validator.valid?(@picture_fill_mode) true end
Check to see if the all the properties in the model are valid @return true if the model is valid
AsposeSlidesCloud::FillFormat#valid?