Rendera CGM till POWERPOINT inom C++-applikationer

Konvertera CGM till POWERPOINT i dina C++-applikationer utan att använda Microsoft® PowerPoint

 

Är du en C++-utvecklare som vill lägga till för att integrera CGM till POWERPOINT-konverteringsfunktionen i dina C++-applikationer? Du kan göra det i två enkla steg. Du kan exportera CGM till PPTX genom att använda Aspose.PDF for C++ . För det andra, genom att använda Aspose.Slides for C++ , kan du konvertera PPTX till POWERPOINT. Båda API:erna kommer under paketet Aspose.Total for C++ .

C++ API för att exportera CGM till POWERPOINT

  1. Öppna CGM-filen med klassreferens Document
  2. Konvertera CGM till PPTX genom att använda metodfunktionen Save
  3. Ladda PPTX-dokument genom att använda klassreferensen Presentation
  4. Spara dokumentet i POWERPOINT-format med hjälp av medlemsfunktionen Save och ställ in “Powerpoint” som SaveFormat

Konverteringskrav

Installera från kommandoraden som nuget install Aspose.Total.Cpp eller via Package Manager Console of Visual Studio med Install-Package Aspose.Total.Cpp.

Alternativt kan du hämta offline MSI-installationsprogrammet eller DLL-filer i en ZIP-fil från downloads .

// load CGM file with an instance of Document class
auto doc = MakeObject<Document>(u"template.cgm");
// save CGM 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 Ppt format
prs->Save(u"output.ppt", Aspose::Slides::Export::SaveFormat::Ppt);  

Ändra lösenord för CGM-dokument via C++

I processen att rendera CGM till POWERPOINT kan du öppna en lösenordsskyddad CGM och även ändra dess lösenord. För att ändra lösenordet för en CGM-fil måste du känna till ägarlösenordet för det dokumentet. Du kan ladda lösenordsskyddade PDF-dokument med Aspose.PDF for C++ genom att ange dess ägarlösenord och använda ChangePasswords-metoden för att ändra lösenordet.

// load an existing CGM Document
auto doc = MakeObject<Document>(L"input.cgm", L"owner");
// change password of CGM Document
doc->ChangePasswords(L"owner", L"newuser", L"newuser");
// save the document
doc->Save(L"output.Doc");

Lägg till bilder från webben i POWERPOINT-fil via C++

Efter att ha konverterat CGM till POWERPOINT kan du också lägga till bilder från webben till ditt utdatadokument. Aspose.Slides for C++ stöder operationer med bilder i dessa populära format: JPEG, PNG, BMP, GIF och andra. Du kan lägga till en eller flera bilder på din dator på en bild i en presentation. Den här exempelkoden i C++ visar hur du lägger till en bild i en POWERPOINT-fil

// instantiate a Presentation object that represents a POWERPOINT file
auto pres = System::MakeObject<Presentation>("output.powerpoint");
// 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.powerpoint", SaveFormat::Ppt);

Utforska CGM konverteringsalternativ med C++

Konvertera CGMs till DOCM (Microsoft Word 2007 Marco File)
Konvertera CGMs till DOT (Microsoft Word Template Files)
Konvertera CGMs till DOTM (Microsoft Word 2007+ Template File)
Konvertera CGMs till DOTX (Microsoft Word Template File)
Konvertera CGMs till FLATOPC (Microsoft Word 2003 WordprocessingML)
Konvertera CGMs till GIF (Graphical Interchange Format)
Konvertera CGMs till MHTML (Web Page Archive Format)
Konvertera CGMs till ODT (OpenDocument Text File Format)
Konvertera CGMs till OTT (OpenDocument Standard Format)
Konvertera CGMs till PCL (Printer Command Language Document)
Konvertera CGMs till PS (PostScript File)
Konvertera CGMs till RTF (Rich Text Format)
Konvertera CGMs till WORDML (Microsoft Word 2003 WordprocessingML)
Konvertera CGMs till CSV (Comma Seperated Values)
Konvertera CGMs till DIF (Data Interchange Format)
Konvertera CGMs till EXCEL (Spreadsheet File Formats)
Konvertera CGMs till FODS (OpenDocument Flat XML Spreadsheet)
Konvertera CGMs till MD (Markdown Language)
Konvertera CGMs till ODP (OpenDocument Presentation Format)
Konvertera CGMs till ODS (OpenDocument Spreadsheet)
Konvertera CGMs till OTP (OpenDocument Standard Format)
Konvertera CGMs till POT (Microsoft PowerPoint Template Files)
Konvertera CGMs till POTM (Microsoft PowerPoint Template File)
Konvertera CGMs till POTX (Microsoft PowerPoint Template Presentation)
Konvertera CGMs till PPS (PowerPoint Slide Show)
Konvertera CGMs till PPSM (Macro-enabled Slide Show)
Konvertera CGMs till PPSX (PowerPoint Slide Show)
Konvertera CGMs till PPT (Microsoft PowerPoint 97-2003)
Konvertera CGMs till PPTM (Macro-enabled Presentation File)
Konvertera CGMs till SWF (Shockwave Flash Movie)
Konvertera CGMs till SXC (StarOffice Calc Spreadsheet)
Konvertera CGMs till TSV (Tab Seperated Values)
Konvertera CGMs till TXT (Text Document)
Konvertera CGMs till XLAM (Excel Macro-Enabled Add-In)
Konvertera CGMs till XLSB (Excel Binary Workbook)
Konvertera CGMs till XLSM (Macro-enabled Spreadsheet)
Konvertera CGMs till XLT (Excel 97 - 2003 Template)