#Aspose.Imaging Cloud SDK for Perl
This repository contains Aspose.Imaging Cloud SDK for Perl source code. This SDK allows you to work with Aspose.Imaging Cloud REST APIs in your perl applications quickly and easily. 

<p align="center">
  <a title="Download complete Aspose.Imaging for Cloud source code" href="https://github.com/asposeimaging/Aspose_Imaging_Cloud/archive/master.zip">
	<img src="https://raw.github.com/AsposeExamples/java-examples-dashboard/master/images/downloadZip-Button-Large.png" />
  </a>
</p>

## How to use the SDK?

The complete source code is available in this repository folder. For more details, please visit our [documentation](https://docs.aspose.com/display/imagingcloud/Available+SDKs).

##Quick SDK Tutorial
```javascript
use lib 'lib';
use strict;
use warnings;
use File::Slurp; # From CPAN

use AsposeImagingCloud::ImagingApi;
use AsposeImagingCloud::ApiClient;
use AsposeImagingCloud::Configuration;

$AsposeImagingCloud::Configuration::app_sid = 'XXX';
$AsposeImagingCloud::Configuration::api_key = 'XXX';

$AsposeImagingCloud::Configuration::debug = 1;

#Instantiate Aspose.Imaging API SDK
my $imagingApi = AsposeImagingCloud::ImagingApi->new();

my $data_path = '../data/';

#set input file name
my $name = 'sample.bmp';
my $bitsPerPixel = 24;
my $horizontalResolution = 300;
my $verticalResolution = 300;

#invoke Aspose.Imaging Cloud SDK API to update BMP specific properties without using cloud storage
my $response = $imagingApi->PostImageBmp(bitsPerPixel => $bitsPerPixel, horizontalResolution => $horizontalResolution, verticalResolution => $verticalResolution, file => $data_path.$name);

if($response->{'Status'} eq 'OK'){

    my $output_file = 'C:/temp/'. $name;
	write_file($output_file, { binmode => ":raw" }, $response->{'Content'});

}

```
##Contact Us
Your feedback is very important to us. Please feel free to contact us using our [Support Forums](https://www.aspose.com/community/forums/).