# C++ uygulaması aracılığıyla PPS'yi PPSX'e dönüştürün

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

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



## C++ Kullanarak PPS'yi PPSX'e Dönüştürme

 PPS'yi PPSX'e dönüştürmek için kullanacağız
 [Aspose.Slides for C++](https://products.aspose.com/slides/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

```

## PPS'yi C++ ile PPSX'e Dönüştürme Adımları

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

1. PPS dosyasını Aspose.Slides for C++ Presentation Object ile yükleyin.
1. Save() yöntemini çağırın.
1. Çıktı dosyası yolunu (PPSX) dosya uzantısıyla iletin.
1. PPSX dosyası belirtilen yola kaydedilecektir.
1. PPSX 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.

### PPS'den PPSX'e C++ Dönüştürme Kaynak Kodu

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

```

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

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