Best Free Annotate PDF
Kuwedzera mufananidzo, mufananidzo, kana kuratidzwa kwemufananidzo kune PDF peji - pasina mari, pasina kurodha pasi.
Maitiro ekushanda
- Upload. Choose the PDF iwe uchida kuongorora (up to 100 MB).
- Kuwedzera markup. Choose note, text box kana rectangle, set peji uye nzvimbo, uye wedzera yako tenzi.
- Download. The anoted PDF downloads otomatiki; iyo yazvino haisi kuchengetwa.
Nezve iyi chirongwa
Annotate PDF inowedzera markup kune yako dokumendi: a sticky note, a free- text box written directly on the page, or a rectangle to draw attention to an area. You choose the page and the position, and the annotation is embedded as a real PDF annotation that other readers can see. It is handy for leaving a comment, flagging a section, or boxing something for review without opening heavyweight PDF software. No signup, processed in memory and discarded.
Chii vanhu vanoshandisa kuti
- Kudzoserazve mufananidzo wechigadzirwa
- Box chirevo kana chiratidzo chinoda kutariswa
- Kunyora kugadziriswa kwemashoko papeji
- Flag a section before sending a PDF for review
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/pdf-annotator/
| Parameter | Mufananidzo | Anodarika | Nhoroondo |
|---|---|---|---|
file (faira) |
document.pdf |
Yes | PDF, โค25 MB. |
type |
note |
Hapana | note / freetext / box. |
text |
Please review this section |
Hapana | Text for note / freetext. |
page |
1 |
Hapana | Page number (default 1). |
x |
72 |
Hapana | X position in points. |
y |
72 |
Hapana | Y position in points. |
curl -X POST https://best.free/api/tools/pdf-annotator/ \
-F 'file=@document.pdf' \
-F 'type=note' \
-F 'text=Please review this section' \
-F 'page=1' \
-F 'x=72' \
-F 'y=72' \
-o annotated.pdf
import requests
files = {"file": open("document.pdf", "rb")}
data = {"type": "note", "text": "Please review this section", "page": 1, "x": 72, "y": 72}
r = requests.post("https://best.free/api/tools/pdf-annotator/", files=files, data=data)
with open("annotated.pdf", "wb") as out:
out.write(r.content)
const fd = new FormData();
fd.append("file", fileInput.files[0]);
fd.append("type", "note");
fd.append("text", "Please review this section");
fd.append("page", 1);
fd.append("x", 72);
fd.append("y", 72);
const r = await fetch("https://best.free/api/tools/pdf-annotator/", { method: "POST", body: fd });
const blob = await r.blob(); // the annotated.pdf
Kutenda: The PDF with a note, text box or rectangle added.