Best Free Document Converter
Kushandura mapepa pakati DOCX, PDF, ODT, TXT uye HTML ne LibreOffice - zvakasununguka, hapana kushanyira.
Maitiro ekushanda
- Upload. Choose a document - DOCX, ODT, TXT and more (up to 100 MB).
- Choose a format. Choose iyo output: PDF, DOCX, ODT, TXT kana HTML.
- Download. Iyo yakashandurwa dokumendi inorodha pasi otomatiki; hapana chinochengetwa.
Nezve iyi chirongwa
Document Converter inoita kuti mapepa ebasa ashandurwe pakati pezvimiro zvakasiyana nekushandisa LibreOffice paserver: shandura DOCX kuita PDF, shandura ODT kuita Word, kana kutumira kunze kune yakajeka chinyorwa kana HTML. Inoita kuti mapepa ebasa achengetedze mavara, mafonti uye mazita sezvaiita LibreOffice, iyo inochengeta mapepa ezuva nezuva zvakanaka. Mapepa ese anoshandurwa pasi pechiyero chekukura uye nguva yakaoma munzvimbo yekushanda yakabatana. Hapana watermark, hapana kudhirowa, uye mapepa ako anogadziriswa panguva iyo faira rakashandurwa richigadzirira.
Chii vanhu vanoshandisa kuti
- Kuchinja Word Document kune PDF kuti ugove neyako
- ODT kushandura kune DOCX yemumwe munhu
- Export a document to clean plain text or HTML
- Open a document format not familiar in something common
Developer API
Automatize iyi chirongwa kubva yako pachako code. Send a POST request to the endpoint below and get the same result the web tool produces. It is rate-limited per IP and needs no signup - API keys for higher limits are coming.
https://best.free/api/tools/document-converter/
| Parameter | Mufananidzo | Anodarika | Nhoroondo |
|---|---|---|---|
file (faira) |
document.docx |
Yes | Office/text document, ≤25 MB. |
format |
pdf |
Hapana | pdf / docx / odt / pptx / xlsx / txt / html. |
curl -X POST https://best.free/api/tools/document-converter/ \
-F 'file=@document.docx' \
-F 'format=pdf' \
-o document.pdf
import requests
files = {"file": open("document.docx", "rb")}
data = {"format": "pdf"}
r = requests.post("https://best.free/api/tools/document-converter/", files=files, data=data)
with open("document.pdf", "wb") as out:
out.write(r.content)
const fd = new FormData();
fd.append("file", fileInput.files[0]);
fd.append("format", "pdf");
const r = await fetch("https://best.free/api/tools/document-converter/", { method: "POST", body: fd });
const blob = await r.blob(); // the document.pdf
Kutenda: The converted document.