Skip to content

Repository files navigation

ConvertAPI Ruby Client

GemBuild StatusLicense: MIT

Convert your files with our online file conversion API

ConvertAPI helps in converting various file formats. Creating PDF and Images from various sources like Word, Excel, Powerpoint, images, web pages or raw HTML codes. Merge, Encrypt, Split, Repair and Decrypt PDF files and many other file manipulations. You can integrate it into your application in just a few minutes and use it easily.

Installation

Add this line to your application's Gemfile:

gem'convert_api'

Usage

Configuration

You can get your credentials at https://www.convertapi.com/a/authentication

ConvertApi.configuredo |config|
config.api_credentials='api-token'end

File conversion

Example to convert file to PDF. All supported formats and options can be found here.

result=ConvertApi.convert('pdf',{File: '/path/to/my_file.docx'})# save to fileresult.file.save('/path/to/save/file.pdf')

Other result operations:

# save all result files to folderresult.save_files('/path/to/save/files')# get result file ioio=result.file.io# get conversion costconversion_cost=result.conversion_cost

Convert file url

result=ConvertApi.convert('pdf',{File: 'https://website/my_file.docx'})

Specifying from format

result=ConvertApi.convert('pdf',{File: /path/to/my_file'},  from_format: 'docx')

Additional conversion parameters

ConvertAPI accepts extra conversion parameters depending on converted formats. All conversion parameters and explanations can be found here.

result=ConvertApi.convert('pdf',{File: /path/to/my_file.docx', PageRange: '1-10', PdfResolution: '150'})

Accessing result file properties

You can access result file collection like this:

result=ConvertApi.convert('pdf',{File: 'https://website/my_file.docx'})putsresult.files[0].urlputsresult.files[0].size

User information

You can always check your usage by fetching user information.

user_info=ConvertApi.userputsuser_info['ConversionsConsumed']

Alternative domain

Set config base_uri attribute to use other service domains. Dedicated to the region domain list.

ConvertApi.configuredo |config|
config.base_uri=URI('https://eu-v2.convertapi.com/')end

More examples

Find more advanced examples in the examples/ folder.

Development

Run CONVERT_API_SECRET=your_api_token rake spec to run the tests.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/ConvertAPI/convertapi-ruby. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

About

A Ruby Gem for the ConvertAPI

Resources

Stars

12 stars

Watchers

3 watching

Forks

Releases

Packages

Used by

Contributors

Languages