En İyi Özgür PowerPoint'ten PDF'ye
PowerPoint dekini PDF'ye çevirin, sayfa başına bir slayt - ücretsiz, su işareti yok, kayıt yok.
Nasıl çalışıyor?
- Yükle. PowerPoint dosyasını seçin - PPT, PPTX veya ODP (100 MB'ye kadar).
- Döndür. PDF'ye dönüştürme basın - her slayt LibreOffice aracılığıyla bir sayfa haline gelir.
- İndir. PDF otomatik olarak indirilir; sunumu asla kaydedilmez.
Bu araç hakkında
PowerPoint to PDF turns a PPT or PPTX presentation into a PDF, with each slide becoming a page. It uses LibreOffice on the server to render the deck, so the slide layout, fonts and graphics carry over faithfully. A PDF is the safe way to share a presentation when you want it to look identical for everyone and can't rely on the recipient having PowerPoint. Each conversion runs under a size cap and a hard time limit. No watermark, no signup, and the file is deleted right after.
İnsanlar ne için kullanıyor?
- Herkesin aynı görünen bir PDF olarak bir değirmen paylaşın
- PowerPoint'i olmayan birine slayt gönder
- Bir sunumu kolayca düzenetilemeyecek şekilde kilitleyin
- Bir deckten basılı bir broşür oluştur
Geliştirici API
Bu aracı kendi kodunuzdan otomatikleştirin. Aşağıdaki son noktaya bir POST isteği gönderin ve web aracı ürettiği sonuçla aynısını alın. IP başına hız sınırlıdır ve kayıt gerektirmez - daha yüksek limitler için API anahtarları gelecek.
https://best.free/api/tools/ppt-to-pdf/
| Parametreler | Örnek | Gerekir | Notlar |
|---|---|---|---|
file (dosya) |
deck.pptx |
Evet | PPT/PPTX/ODP, ≤25 MB. |
curl -X POST https://best.free/api/tools/ppt-to-pdf/ \
-F 'file=@deck.pptx' \
-o slides.pdf
import requests
files = {"file": open("deck.pptx", "rb")}
r = requests.post("https://best.free/api/tools/ppt-to-pdf/", files=files)
with open("slides.pdf", "wb") as out:
out.write(r.content)
const fd = new FormData();
fd.append("file", fileInput.files[0]);
const r = await fetch("https://best.free/api/tools/ppt-to-pdf/", { method: "POST", body: fd });
const blob = await r.blob(); // the slides.pdf
Cevap: The presentation as a PDF.