# C++ uygulaması aracılığıyla PPSX'i HTML'ye dönüştürün

> PPSX belgesi için HTML formatına örnek C++ dönüştürme kodu. Herhangi bir C++ Uygulamasında toplu PPSX'ten HTML'ye dönüştürme için örnek kod kullanın.

Source: https://products.aspose.com/slides/tr/cpp/conversion/ppsx-to-html/
Updated: 2026-08-11



## C++ Kullanarak PPSX'i HTML'ye Dönüştürme

 PPSX'i HTML'ye dönüştürmek için kullanacağız
 [Aspose.Slides for C++](https://products.aspose.com/slides/tr/cpp/)
 C++ platformu için zengin özelliklere sahip, güçlü ve kullanımı kolay bir belge işleme ve dönüştürme API'si olan API. En son sürümünü doğrudan indirebilirsiniz, sadece açın
 [NuGet](https://www.nuget.org/packages/aspose.slides)
 paket yöneticisi, ara
 Aspose.Slides.Cpp
 ve yükleyin. Paket Yöneticisi Konsolundan aşağıdaki komutu da kullanabilirsiniz.

### Emretmek

```cs

PM> Install-Package Aspose.Slides.Cpp

```

## PPSX'i C++ ile HTML'ye Dönüştürme Adımları

 C++ geliştiricileri, PPSX dosyasını yalnızca birkaç satır kodla kolayca HTML'ye dönüştürebilir.

1. PPSX dosyasını Aspose.Slides for C++ Presentation Object ile yükleyin.
1. Save() yöntemini çağırın.
1. Çıktı dosyası yolunu (HTML) dosya uzantısıyla iletin.
1. HTML dosyası belirtilen yola kaydedilecektir.
1. HTML dosyasını uyumlu programda açın.

## sistem gereksinimleri

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

- Microsoft Windows veya Windows 32 bit, Windows 64 bit ve Linux 64 bit için C++ Runtime Environment ile uyumlu bir işletim sistemi.
- Projenizde referans verilen C++ DLL için Aspose.Slides.

### PPSX'ten HTML'ye C++ Dönüştürme Kaynak Kodu

```cs
// Load the PPSX.
SharedPtr<Presentation> prs = MakeObject<Presentation>(u"sourceFile.ppsx");
// Save in HTML format.
prs->Save(u"convertedFile.html", Aspose::Slides::Export::SaveFormat::Html);

```

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

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