# Python'da PPSX'i PDF'ye Dönüştür

> PPSX'ten PDF'ye Python dönüştürme için örnek kod. PPSX 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/ppsx-to-pdf/
Updated: 2026-08-11



## Python'da PPSX'i PDF'ye Dönüştür

PPSX 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 PPSX'i PDF formatına dönüştürebilir.

Modern bir sunum işleme API'si olan Aspose.Slides for Python, PPSX'ten hızlı bir şekilde PDF oluşturur. PPSX'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ığı, PPSX 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 PPSX'i PDF'ye Dönüştürme

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

Sunum sınıfının bir örneği ile PPSX dosyasını yükleyin

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

PPSX 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, PPSX'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.ppsx") as presentation:
    presentation.save("presentation.pdf", slides.export.SaveFormat.PDF)

```

## Python'da PPSX'i PDF olarak kaydedin

PPSX'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

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