Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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.
Add this line to your application's Gemfile:
gem 'convert_api'
You can get your credentials at https://www.convertapi.com/a/auth
ConvertApi.configure do |config|
config.api_credentials = 'your-api-secret-or-token'
end
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 file
result.file.save('/path/to/save/file.pdf')
Other result operations:
# save all result files to folder
result.save_files('/path/to/save/files')
# get result file io
io = result.file.io
# get conversion cost
conversion_cost = result.conversion_cost
result = ConvertApi.convert('pdf', { File: 'https://website/my_file.docx' })
result = ConvertApi.convert(
'pdf',
{File: /path/to/my_file'},
from_format: 'docx'
)
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'}
)
You can access result file collection like this:
result = ConvertApi.convert('pdf', { File: 'https://website/my_file.docx' })
puts result.files[0].url
puts result.files[0].size
You can always check your usage by fetching user information.
user_info = ConvertApi.user
puts user_info['ConversionsConsumed']
Set config base_uri
attribute to use other service domains. Dedicated to the region domain list.
ConvertApi.configure do |config|
config.base_uri = URI('https://eu-v2.convertapi.com/')
end
Find more advanced examples in the examples/ folder.
Run CONVERT_API_SECRET=your_secret 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.
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.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that convert_api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.