[![Aspose Cloud APIs][1] as per Aspose Cloud 1.1.6.5. With this new release, the create, read, manipulate and export features are greatly improved. You can add, update or delete pictures and OLE objects, and set different options including auto-fit rows when saving Microsoft Excel workbooks as other formats.

New Aspose.Cells Methods

As per the latest version of Aspose Cloud 1.1.6.5, we’ve implemented the following functions to Aspose Cloud PHP SDK:

  • [Add OleObject][2] – Add a new OLE object to a Microsoft Excel worksheet. The [oleobjects][3] resource can be used and a PUT request can be sent (specifying options for OLE object) to add a new OLE object.
  • [Update OleObject][4] – Update a specific OLE object in a worksheet. The [oleobject][5] resource can be used and a POST request can be sent (specifying options to update) to update an existing OLE object.
  • [Delete OleObject][6] – Delete an existing OLE object from a worksheet. The [oleobject][7] resource can be used and a DELETE request can be sent to delete a specific object.
  • [Delete all OleObjects][8] – Delete all OLE objects from a worksheet. The [oleobjects][9] resource can be used and a DELETE request can be sent to delete all OLE objects.
  • [Add a Picture][10] – Add a new picture to a worksheet. The [pictures][11] resource can be used and a PUT request can be sent (specifying options for picture) to add a new picture.
  • [Update a Picture][12] – Update a specific picture in a worksheet. The [picture][13] resource can be used and a POST request can be sent (specifying options to update) to update an existing picture.
  • [Delete a Picture][14] – Delete an existing picture from a worksheet. The [picture][15] resource can be used and a DELETE request can be sent to delete a specific picture.
  • [Delete all Pictures][16] – Delete all pictures from a worksheet. The [pictures][17] resource can be used and a DELETE request can be sent to delete all pictures.

New Aspose.PDF Methods

[Convert PDFs from Remote Server][18] – Convert Adobe Acrobat PDF files uploaded to a remote server. You can pass URL and format parameters to specify the PDF’s URL and output format and use the PUT method of the convert resource to convert remote PDF files.

Code Snippets

Sample Code Aspose.PDF - Convert PDF by URL

use AsposeCloudCommonAsposeApp;
use AsposeCloudCommonProduct;
use AsposeCloudPDFConverter;

AsposeApp::$appSID = '3395ba5c-***';
AsposeApp::$appKey = 'e8dd1b0cd***';

/* * Creating the object of PDF Converter Class with a perameter $fileName */
$Obj = new Converter('path/to/pdf/file.pdf');

// Call convertByUrl method.
$Obj->convertByUrl('http://url-to-pdf.com/file.pdf','tiff','outputfile.tiff');

Sample Code Aspose.Cells - Delete All Pictures

use AsposeCloudCommonAsposeApp;
use AsposeCloudCommonProduct;
use AsposeCloudCellsWorksheet;

AsposeApp::$appSID = '3395ba5c-***';
AsposeApp::$appKey = 'e8dd1b0cd***';

/* * Creating the object of Worksheet Class */
$Obj = new Worksheet('path/to/excel/file.xlsx','worksheetName');

// Call deleteAllPicturesmethod.
$Obj->deleteAllPictures();

[1]: https://blog.aspose.com/wp-content/uploads/sites/2/2013/12/asposeCloudAPIs.png “Aspose Cloud APIs”)](https://blog.aspose.com/wp-content/uploads/sites/2/2013/12/asposeCloudAPIs.png)We are pleased to announce the release of [Aspose Cloud PHP SDK](https://github.com/asposeforcloud/Aspose_Cloud_SDK_For_Php “Aspose Cloud PHP SDK” [2]: http://www.aspose.com/docs/display/cellscloud/Add+OleObjects+to+Excel+Worksheet [3]: http://www.aspose.com/docs/display/cellscloud/oleobjects “Aspose.Cells Cloud” [4]: http://www.aspose.com/docs/display/cellscloud/Update+a+specific+OleObject+from+Excel+Worksheet [5]: http://www.aspose.com/docs/display/cellscloud/oleobject “Aspose.Cells Cloud” [6]: http://www.aspose.com/docs/display/cellscloud/Delete+a+specific+OleObject+from+Excel+Worksheet [7]: http://www.aspose.com/docs/display/cellscloud/oleobject “Aspose.Cells Cloud” [8]: http://www.aspose.com/docs/display/cellscloud/Delete+all+OleObjects+from+Excel+Worksheet [9]: http://www.aspose.com/docs/display/cellscloud/oleobjects “Aspose.Cells Cloud” [10]: http://www.aspose.com/docs/display/cellscloud/Add+Pictures+to+Excel+Worksheet [11]: http://www.aspose.com/docs/display/cellscloud/pictures “Aspose.Cells Cloud” [12]: http://www.aspose.com/docs/display/cellscloud/Update+a+specific+Picture+from+Excel+Worksheet [13]: http://www.aspose.com/docs/display/cellscloud/picture “Aspose.Cells Cloud” [14]: http://www.aspose.com/docs/display/cellscloud/Delete+a+specific+Picture+from+Excel+Worksheet [15]: http://www.aspose.com/docs/display/cellscloud/picture “Aspose.Cells Cloud” [16]: http://www.aspose.com/docs/display/cellscloud/Delete+all+Pictures+from+Excel+Worksheet [17]: http://www.aspose.com/docs/display/cellscloud/pictures “Aspose.Cells Cloud” [18]: http://www.aspose.com/docs/display/pdfcloud/Convert+PDF+from+Remote+Server+to+other+Formats