foxit api example:
curl --location 'https://na1.fusion.foxit.com/pdf-services/api/documents/convert/pdf-to-image' \
--header 'Content-Type: application/json' \
--data '{
"documentId": "doc_abc123",
"pageRange": "1-5",
"config": {
"dpi": 96
}
}'
]]>Introducing PDF APIs from Foxit - Foxit - A good introduction to the APIs
Generate Dynamic PDFs from JSON using Foxit APIs - Foxit - an introduction to Document Generation
How to Extract Text from PDFs using Foxit's REST APIs - Foxit - a look at Extract, part of PDF Services
How to Chain PDF Actions with Foxit - Foxit - a demo of how to ‘chain’ API calls together for more efficient workflows
Embed Secure eSignatures into Your App with Foxit API - Foxit - a look at the developer APIs available for eSign
Convert Office Docs to PDFs Automatically with Foxit PDF Services API - Foxit - a workflow example showing Pipedream support for document conversion with our APIs
Create Custom Invoices with Word Templates and Foxit Document Generation - Foxit - a Document Generation demo showing invoice creation
]]>Be sure to provide information that covers your platform, what you tried, and what error messages you may have gotten.
]]>import pdf_service_sdk
import os
CLIENT_ID = os.getenv("CLIENT_ID")
CLIENT_SECRET = os.getenv("CLIENT_SECRET")
sdk = pdf_service_sdk.PDFServiceSDK( client_id=CLIENT_ID,
client_secret=CLIENT_SECRET)
sdk.word_to_pdf(input_path="../../inputfiles/input.docx",output_path="../../output/output_from_sdk.pdf")
print("Conversion completed successfully. Check the output file at ../../output/output_from_sdk.pdf")
I’ve put these up here, developerapidemos/sdktesting at main · foxitsoftware/developerapidemos · GitHub, with the plan to eventually publish them to npm, the appropriate place for Python, etc.
]]>Samples are mostly for Python, with some Node samples as well.
]]>Foxit Developers Forum
A place for Foxit API and SDK users to get support.
Here are some things you can do to get started:
Introduce yourself by adding your picture and information about yourself and your interests to your profile. What is one thing you’d like to be asked about?
Get to know the community by browsing discussions that are already happening here. When you find a post interesting, informative, or entertaining, use the
to show your appreciation or support!
Contribute by commenting, sharing your own perspective, asking questions, or offering feedback in the discussion. Before replying or starting new topics, please review the Community Guidelines.
]]>If you need help or have a suggestion, feel free to contact the admins.