# Python'da PPTX'i PDF'ye dönüştürün

> PPTX'ten PDF'ye Python dönüştürme için örnek kod. PPTX dosyalarını PDF dosyalarına toplu olarak dönüştürmek için PowerPoint Python API'sini kullanın.

Source: https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-pdf/
Updated: 2026-08-11



## Python'da PPTX'i PDF'ye dönüştürün

PPTX dosyalarını programlı olarak PDF'ye dönüştürmeniz mi gerekiyor? [*Aspose.Slides for Python aracılığıyla .NET*](https://products.aspose.com/slides/tr/python-net/) kullanarak herhangi bir geliştirici, yalnızca birkaç satır Python koduyla PPTX'i PDF formatına dönüştürebilir.

Modern bir sunum işleme API'si olan Aspose.Slides for Python, PPTX'ten hızlı bir şekilde PDF oluşturur. PPTX'ten PDF'ye dönüştürme kalitesini doğrudan [tarayıcınızda](https://products.aspose.app/slides/conversion) test edin. Aspose PowerPoint PPTX kitaplığı, PPTX dosyalarını birçok popüler formata dönüştürmenize olanak tanır.

Aşağıdaki pip komutunu kullanarak kitaplığı [PyPI](https://pypi.org/project/Aspose.Slides/) adresinden yükleyebilirsiniz:

### Konsol/Terminal

```console
> pip install aspose.slides

```

## Python'da PPTX'i PDF'ye Dönüştürme

Bunlar, Python kullanarak bir PPTX dosyasını PDF'ye dönüştürme adımlarıdır.

PPTX dosyasını bir Presentation sınıfı örneğiyle yükleyin

Çıktı dosyası yolunu & SaveFormat.PDF'yi parametre olarak belirtirken 'save' yöntemini çağırın

PPTX dosyası belirtilen yola kaydedilecek

## sistem gereksinimleri

 Python dönüştürme örnek kaynak kodunu çalıştırmadan önce aşağıdaki ön koşullara sahip olduğunuzdan emin olun.

- Microsoft Windows veya Linux tabanlı işletim sistemi (bkz. [daha fazla](https://docs.aspose.com/slides/python-net/system-requirements/)).
- Python 3.5 veya üstü
- Projenizde referans verilen Python için Aspose.Slides.

### Bu örnek kod, PPTX'ten PDF'ye Python Dönüşümünü gösterir

```py

import aspose.slides as slides
import aspose.pydrawing as drawing

with slides.Presentation("presentation.pptx") as presentation:
    presentation.save("presentation.pdf", slides.export.SaveFormat.PDF)

```

## PPTX'i Python'da PDF olarak kaydedin

PPTX'ten PDF'ye dönüştürme işleminin bir gösterimini görmek için ücretsiz uygulamayı kullanın.

## Desteklenen Diğer Dönüşümler

- [PPTX TO BMP](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-bmp/) — Bitmap Görüntüsü
- [PPTX TO EMF](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-emf/) — Gelişmiş Meta Dosyası Formatı
- [PPTX TO FODP](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-fodp/) — OpenDocument Düz XML Sunumu
- [PPTX TO GIF](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-gif/) — Grafik Değişim Formatı
- [PPTX TO HTML](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-html/) — Hiper Metin İşaretleme Dili
- [PPTX TO JPG](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-jpg/) — JPEG Resmi
- [PPTX TO ODP](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-odp/) — OpenDocument Sunum Formatı
- [PPTX TO OTP](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-otp/) — OpenDocument Standart Biçimi
- [PPTX TO PNG](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-png/) — taşınabilir Ağ Grafikleri
- [PPTX TO POT](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-pot/) — Microsoft PowerPoint Şablon Dosyaları
- [PPTX TO POTM](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-potm/) — Microsoft PowerPoint Şablon Dosyası
- [PPTX TO POTX](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-potx/) — Microsoft PowerPoint Şablonu Sunumu
- [PPTX TO PPS](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-pps/) — PowerPoint Slayt Gösterisi
- [PPTX TO PPSM](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-ppsm/) — Makro Etkin Slayt Gösterisi
- [PPTX TO PPSX](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-ppsx/) — PowerPoint Slayt Gösterisi
- [PPTX TO PPT](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-ppt/) — Microsoft PowerPoint 97-2003
- [PPTX TO PPTM](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-pptm/) — Makro Etkin Sunum Dosyası
- [PPTX TO SVG](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-svg/) — ölçeklendirilebilir Vektör Grafiği
- [PPTX TO SWF](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-swf/) — SWF Formatı
- [PPTX TO TIFF](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-tiff/) — Etiketli Görüntü Formatı
- [PPTX TO XPS](https://products.aspose.com/slides/tr/python-net/conversion/pptx-to-xps/) — XML Kağıt Özellikleri
