PHPackages                             convertorio/sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. convertorio/sdk

ActiveLibrary[API Development](/categories/api)

convertorio/sdk
===============

Official Convertorio SDK for PHP - Convert images easily with a simple API

v1.2.9(5mo ago)27MITPHPPHP &gt;=7.4

Since Nov 20Pushed 4mo agoCompare

[ Source](https://github.com/SedeSoft/convertorio-sdk)[ Packagist](https://packagist.org/packages/convertorio/sdk)[ Docs](https://github.com/SedeSoft/convertorio-sdk)[ RSS](/packages/convertorio-sdk/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (11)Used By (0)

Convertorio SDK
===============

[](#convertorio-sdk)

Official SDKs for the Convertorio API - Convert images between 20+ formats with ease.

🌟 Features
----------

[](#-features)

- ✅ Simple, intuitive APIs
- ✅ Support for 20+ image formats
- ✅ Automatic file upload and download
- ✅ Event-driven progress tracking
- ✅ Comprehensive error handling
- ✅ TypeScript support
- ✅ Well documented with examples
- ✅ PDF to Thumbnail conversion
- ✅ AI-powered OCR text extraction

📦 Supported Languages
---------------------

[](#-supported-languages)

LanguageStatusDocumentationPackage**Node.js**✅ Available[docs/nodejs](./docs/nodejs/README.md)`convertorio-sdk`**Python**✅ Available[docs/python](./docs/python/README.md)`convertorio-sdk`**PHP**✅ Available[README-PHP.md](./README-PHP.md)`convertorio/sdk`**Go**✅ Available[docs/go](./docs/go/README.md)`github.com/SedeSoft/convertorio-sdk/libs/go`**Java**✅ Available[libs/java](./libs/java/README.md)`com.sedesoft:convertorio-sdk`**Ruby**✅ Available[libs/ruby](./libs/ruby/README.md)`convertorio-sdk`**.NET/C#**✅ Available[libs/dotnet](./libs/dotnet/README.md)`Convertorio.SDK`**n8n**✅ Available[docs/n8n](./docs/n8n/README.md)`n8n-nodes-convertorio`🚀 Quick Start
-------------

[](#-quick-start)

### Node.js

[](#nodejs)

```
npm install convertorio-sdk
```

```
const ConvertorioClient = require('convertorio-sdk');

const client = new ConvertorioClient({
    apiKey: 'your_api_key_here'
});

const result = await client.convertFile({
    inputPath: './image.png',
    targetFormat: 'jpg'
});

console.log('Converted!', result.outputPath);
```

[**→ Full Node.js Documentation**](./docs/nodejs/README.md)

### Python

[](#python)

```
pip install convertorio-sdk
```

```
from convertorio_sdk import ConvertorioClient

client = ConvertorioClient(api_key='your_api_key_here')

result = client.convert_file(
    input_path='./image.png',
    target_format='jpg'
)

print(f"Converted! {result['output_path']}")
```

[**→ Full Python Documentation**](./docs/python/README.md)

### PHP

[](#php)

```
composer require convertorio/sdk
```

```
