You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-php/blob/master/LICENSE)
1
+
# GroupDocs.Conversion Cloud SDK for PHP
2
2
3
-
# PHP SDK to Convert Documents in the Cloud
3
+
This repository contains GroupDocs.Conversion Cloud SDK for PHP source code. This SDK allows you to work with GroupDocs.Conversion Cloud REST APIs in your PHP applications.
4
4
5
-
[GroupDocs.Conversion Cloud SDK for PHP](https://products.groupdocs.cloud/conversion/php) wraps GroupDocs.Conversion RESTful APIs so you may integrate **Document Conversion** features in your own apps with zero initial cost.
5
+
## Dependencies
6
6
7
-
GroupDocs.Conversion Cloud API allows the developers to convert between 50+ file formats including Word documents, Excel spreadsheets, PowerPoint presentations, PDF, OpenDocument files, images & more.
7
+
- PHP 5.5 or later
8
8
9
-
## Document Conversion REST API
9
+
## Authorization
10
10
11
-
- Convert the whole document to the desired target format.
12
-
- Convert specific document page(s) or a page range.
13
-
- Auto-detect source document format without requiring the file extension.
14
-
- Load source document with extended options, such as specify password for password-protected documents.
15
-
- Load specific part of the document.
16
-
- Show or hide document comments.
17
-
- Obtain all supported conversion formats list.
18
-
- Replace missing fonts with any other font.
19
-
- Add text or image watermarks to any page.
20
-
- Specify resolution and quality for resultant images.
21
-
- Extract metadata & basic information about the source document.
22
-
- Integrated storage API.
11
+
To use SDK you need AppSID and AppKey authorization keys. You can get your AppSID and AppKey at <https://dashboard.groupdocs.cloud> (free registration is required).
23
12
24
-
Check out the [Developer's Guide](https://docs.groupdocs.cloud/conversion/developer-guide/) to know more about GroupDocs.Conversion REST API.
## Get Started with GroupDocs.Conversion Cloud SDK for PHP
50
-
51
-
First create an account at [GroupDocs for Cloud](https://dashboard.groupdocs.cloud/) and get your application information. Next, follow the installation steps as given below.
52
-
53
-
### Install via Composer
54
-
55
-
The package is available at [Packagist](https://packagist.org/) and it can be installed via [Composer](http://getcomposer.org/) by executing following command.
17
+
The package is available at [Packagist](https://packagist.org/) and it can be installed via [Composer](http://getcomposer.org/) by executing following command:
You can also install the package directly from this repository. Add the following to `composer.json`, then run `composer install`.
23
+
Or you can install SDK via [Composer](http://getcomposer.org/)directly from this repository, add the following to `composer.json`:
62
24
63
25
```javascript
64
26
{
@@ -74,54 +36,67 @@ You can also install the package directly from this repository. Add the followin
74
36
}
75
37
```
76
38
77
-
### Install Manually
39
+
Then run `composer install`
40
+
41
+
### Manual Installation
78
42
79
-
Clone or download this repository, then run `composer install` in the root directory to install dependencies and include `autoload.php` into your code file.
43
+
Clone or download this repository, then run `composer install` in the root directory to install dependencies and include `autoload.php` into your code file:
0 commit comments