C++ uygulamalarınızda TEX’den OTP’ye dönüştürme özelliğini entegre etmek isteyen bir C++ geliştiricisi misiniz? Bunu iki basit adımda yapabilirsiniz. Aspose.PDF for C++ kullanarak TEX’yi PPTX’e aktarabilirsiniz. İkinci olarak, Aspose.Slides for C++ kullanarak PPTX’i OTP’ye dönüştürebilirsiniz. Her iki API de Aspose.Total for C++ paketi kapsamında gelir.
TEX'yi OTP'ye Dışa Aktarmak için C++ API
Dönüşüm Gereksinimleri
Komut satırından nuget install Aspose.Total.Cpp``` veya Visual Studio'nun Paket Yönetici Konsolu üzerinden ```Install-Package Aspose.Total.Cpp
ile kurun.
Alternatif olarak, çevrimdışı MSI yükleyicisini veya DLL’leri downloads adresinden bir ZIP dosyasında alın.
// load TEX file with an instance of Document class
auto doc = MakeObject<Document>(u"template.tex");
// save TEX as PPTX format
doc->Save(u"PptxOutput.pptx", SaveFormat::Pptx);
// instantiate a Presentation object that represents a PPTX file
SharedPtr<Presentation> prs = MakeObject<Presentation>(u"PptxOutput.pptx");
// save the presentation as Otp format
prs->Save(u"output.otp", Aspose::Slides::Export::SaveFormat::Otp);
TEX Belgesinin Şifresini C++ ile Değiştirin
TEX’yi OTP’ye oluşturma sürecinde, parola korumalı bir TEX açabilir ve ayrıca parolasını değiştirebilirsiniz. Bir TEX dosyasının şifresini değiştirmek için o belgenin sahip şifresini bilmeniz gerekir. Aspose.PDF for C++ ile parola korumalı PDF belgesini sahip parolasını belirterek yükleyebilir ve parolayı değiştirmek için ChangePasswords yöntemini kullanabilirsiniz.
// load an existing TEX Document
auto doc = MakeObject<Document>(L"input.tex", L"owner");
// change password of TEX Document
doc->ChangePasswords(L"owner", L"newuser", L"newuser");
// save the document
doc->Save(L"output.Doc");
C++ ile OTP Dosyasında Web'den Görüntüler Ekleme
TEX’yi OTP’ye dönüştürdükten sonra, çıktı belgenize web’den görüntüler de ekleyebilirsiniz. Aspose.Slides for C++ şu popüler formatlardaki resimlerle işlemleri destekler: JPEG, PNG, BMP, GIF ve diğerleri. Bir sunumdaki bir slayta bilgisayarınızdaki bir veya birkaç resim ekleyebilirsiniz. C++‘daki bu örnek kod, bir OTP dosyasına nasıl resim ekleneceğini gösterir.
// instantiate a Presentation object that represents a OTP file
auto pres = System::MakeObject<Presentation>("output.otp");
// get slide
auto slide = pres->get_Slides()->idx_get(0);
// initialize Web Client
auto webClient = System::MakeObject<WebClient>();
// get image data
auto imageData = webClient->DownloadData(System::MakeObject<Uri>(u"[REPLACE WITH URL]"));
// add image
auto image = pres->get_Images()->AddImage(imageData);
// add picture frame
slide->get_Shapes()->AddPictureFrame(ShapeType::Rectangle, 10.0f, 10.0f, 100.0f, 100.0f, image);
// save updated file
pres->Save(u"updated.otp", SaveFormat::Otp);