What’s new in the latest releaseThis is a major revamp release for Aspose.Imaging Cloud SDK for Java. It covers all the [Aspose.Imaging Cloud APIs][1]. This SDK provides a complete solution to work with cloud images in Java using powerful [Aspose.Imagings Cloud APIs][2], so you can manipulate & convert images in the cloud seamlessly. Source Code Repository Complete source code of this release of Aspose.Imaging Cloud SDK for Java is freely available on your favorite GitHub repository.

  • Aspose.Imaging Cloud SDK for Java - v1.0.0

Setup Aspose.Imaging Cloud SDK for Java is also available as released artifacts in the [Aspose Maven Repository][3]. You can bypass GitHub source code repository and depend directly on the released artifacts from Aspose Maven Repository by adding the following repository and dependency to development environments like Eclipse or Apache Maven: Aspose Maven Repository

<repositories>
    <repository>
        <id>aspose-maven-repository</id>
        <name>Aspose Maven Repository</name>
        <url>http://repository.aspose.cloud/repo/</url>
    </repository>
</repositories> 
```**Maven Dependency**

//Instantiate Aspose Storage Cloud API SDK StorageApi storageApi = new StorageApi(apiKey, appSID,true);

//Instantiate Aspose Imaging Cloud API SDK ImagingApi imagingApi = new ImagingApi(apiKey, appSID,true);

//set input file name String fileName = “sample.bmp”; Integer bitsPerPixel = 24; Integer horizontalResolution = 300; Integer verticalResolution = 300; Boolean fromScratch = false; String outPath = “”; String folder = “”; String storage = “”;

//upload files to aspose cloud storage storageApi.PutCreate(fileName, “”, storage, new File(this.getClass().getResource("/" + fileName).toURI()));

//invoke Aspose.Imaging Cloud SDK API to update BMP specific properties
ResponseMessage apiResponse = imagingApi.GetImageBmp(fileName, bitsPerPixel, horizontalResolution, verticalResolution, fromScratch, outPath, folder, storage);

if(apiResponse!=null && apiResponse.getStatus().equals(“OK”)){
//download updated image from api response
InputStream responseStream = apiResponse.getInputStream(); final Path destination = Paths.get(“c:\temp" + fileName); Files.copy(responseStream, destination, StandardCopyOption.REPLACE_EXISTING); }

 }catch(Exception e){
         e.printStackTrace();
 } 

*   [Working with Image Properties](http://www.aspose.com/docs/display/imagingcloud/Working+with+Image+Properties)
*   [Manipulating Images](http://www.aspose.com/docs/display/imagingcloud/Manipulating+Images)
*   [Working with TIFF Frames](http://www.aspose.com/docs/display/imagingcloud/Working+with+TIFF+Frames)

## Start a Free Trial TodayStart a free trial today – all you need is to [sign up][6] with the Aspose Cloud service. Once you have signed up, you are ready to try the powerful file processing features offered by Aspose Cloud.




[1]: http://www.aspose.com/docs/display/imagingcloud/Home
[2]: http://www.aspose.com/cloud/imaging-api.aspx
[3]: http://maven.aspose.com/artifactory/simple/ext-release-local/
[4]: http://www.aspose.com/docs/display/imagingcloud/Home
[5]: http://www.aspose.com/docs/display/imagingcloud/Programmers+Guide
[6]: http://dashboard.aspose.cloud/