# Python'da PPT'yi HTML'ye Dönüştür

> PPT'den HTML Python'a dönüştürme için örnek kod. Toplu dönüştürme PPT dosyalarını HTML dosyalarına dönüştürmek için PowerPoint Python API'sini kullanın.

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



## Python'da PPT'yi HTML'ye Dönüştür

PPT dosyalarını programlı olarak HTML'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 PPT'yi HTML biçimine dönüştürebilir.

Modern bir sunum işleme API'si olan Aspose.Slides for Python, PPT'den hızlı bir şekilde HTML oluşturur. PPT'den HTML'ye dönüştürme kalitesini doğrudan [tarayıcınızda](https://products.aspose.app/slides/conversion) test edin. Aspose PowerPoint PPTX kitaplığı, PPT 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 PPT'yi HTML'ye Dönüştürme

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

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

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

PPT 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, PPT'den HTML'ye Python Dönüşümünü gösterir

```py

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

with slides.Presentation("presentation.ppt") as presentation:
    presentation.save("presentation.html", slides.export.SaveFormat.HTML5)

```

## Python'da PPT'yi HTML olarak kaydedin

PPT'den HTML'ye dönüştürme işleminin bir gösterimini görmek için ücretsiz uygulamayı kullanın.

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

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