class AsposeImagingCloud::CreateCroppedImageRequest

Request model for create_cropped_image operation.

Public Class Methods

new(image_data, x, y, width, height, format = nil, out_path = nil, storage = nil) click to toggle source

Crop an image. Image data is passed as zero-indexed multipart/form-data content or as raw body stream. @param [File] image_data Input image @param [Integer] x X position of start point for cropping rectangle. @param [Integer] y Y position of start point for cropping rectangle. @param [Integer] width Width of cropping rectangle. @param [Integer] height Height of cropping rectangle. @param [String] format Resulting image format. Please, refer to docs.aspose.cloud/display/imagingcloud/Supported+File+Formats#SupportedFileFormats-CommonOperationsFormatSupportMap for possible use-cases. @param [String] out_path Path to updated file (if this is empty, response contains streamed image). @param [String] storage Your Aspose Cloud Storage name.

# File lib/aspose-imaging-cloud/models/requests/create_cropped_image_request.rb, line 43
def initialize(image_data, x, y, width, height, format = nil, out_path = nil, storage = nil)
  @image_data = image_data
  @x = x
  @y = y
  @width = width
  @height = height
  @format = format
  @out_path = out_path
  @storage = storage
end

Public Instance Methods

to_http_info(config) click to toggle source
# File lib/aspose-imaging-cloud/models/requests/create_cropped_image_request.rb, line 54
def to_http_info(config)
  # verify the required parameter 'image_data' is set
  if config.client_side_validation && @image_data.nil?
    raise ArgumentError, "Missing the required parameter 'image_data' when calling ImagingApi.create_cropped_image"
  end

  # verify the required parameter 'x' is set
  if config.client_side_validation && @x.nil?
    raise ArgumentError, "Missing the required parameter 'x' when calling ImagingApi.create_cropped_image"
  end

  # verify the required parameter 'y' is set
  if config.client_side_validation && @y.nil?
    raise ArgumentError, "Missing the required parameter 'y' when calling ImagingApi.create_cropped_image"
  end

  # verify the required parameter 'width' is set
  if config.client_side_validation && @width.nil?
    raise ArgumentError, "Missing the required parameter 'width' when calling ImagingApi.create_cropped_image"
  end

  # verify the required parameter 'height' is set
  if config.client_side_validation && @height.nil?
    raise ArgumentError, "Missing the required parameter 'height' when calling ImagingApi.create_cropped_image"
  end

  # resource path
  local_var_path = '/imaging/crop'

  # query parameters
  query_params = {}
  query_params[:x] = @x
  query_params[:y] = @y
  query_params[:width] = @width
  query_params[:height] = @height
  query_params[:format] = @format unless @format.nil?
  query_params[:outPath] = @out_path unless @out_path.nil?
  query_params[:storage] = @storage unless @storage.nil?

  # form parameters
  form_params = {}
  form_params['imageData'] = @image_data

  # http body (model)
  post_body = nil
  auth_names = ['JWT']

  # header parameters
  header_params = {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  header_params['Content-Type'] = form_params.any? ? 'multipart/form-data' : select_header_content_type(['multipart/form-data'])

  AsposeImagingCloud::HttpRequest.new(local_var_path,
                                  header_params,
                                  query_params,
                                  form_params,
                                  post_body,
                                  auth_names)
end