C++ API för att exportera SVG till DOTM

Återge SVG till DOTM inom C++-applikationer utan att kräva någon tredjepartsapplikation

 

Aspose.Total for C++ filformatsautomatiseringsbibliotek tillåter C++-utvecklare att konvertera SVG till DOTM i två enkla steg. För det första kan du använda Aspose.PDF for C++ API för att konvertera SVG-filformat till DOC. För det andra, genom att använda avancerad Word Document Processing API Aspose.Words for C++ , kan du exportera DOC till DOTM.

C++ API för att rendera SVG till DOTM

  1. Öppna SVG-filen med klassreferens Document
  2. Konvertera SVG till DOC genom att använda medlemsfunktionen Save
  3. Ladda DOC-filen med hjälp av Document klassreferens för Aspose.Words API
  4. Spara dokumentet i DOTM-format med hjälp av medlemsfunktionen Save

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 SVG file with an instance of Document class reference
auto doc = MakeObject<Document>(u"sourceFile.svg");
// save SVG as a DOC 
doc->Save(u"DocOutput.doc", SaveFormat::Doc); 
// load DOC with an instance of Document
System::SharedPtr<Document> wordDoc = System::MakeObject<Document>(u"DocOutput.doc");
// save document as Dotm
wordDoc->Save(u"output.Dotm");  

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

I processen att rendera SVG till DOTM kan du öppna en lösenordsskyddad SVG och även ändra dess lösenord. För att ändra lösenordet för en SVG-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 SVG Document
auto doc = MakeObject<Document>(L"input.svg", L"owner");
// change password of SVG Document
doc->ChangePasswords(L"owner", L"newuser", L"newuser");
// save the document
doc->Save(L"output.Doc");

Begränsa DOTM-filredigering via C++

Du kan också begränsa redigering av DOTM-filer genom att använda Aspose.Words for C++ API. Ibland kan du behöva begränsa möjligheten att redigera ett dokument och endast tillåta vissa åtgärder med det. API låter dig styra hur du begränsar innehållet med hjälp av uppräkningsparametern ProtectionType . Följande kodexempel visar hur man begränsar redigering i ett dokument så att endast redigering i formulärfält är möjlig.

// load Doc with an instance of Document
auto doc = System::MakeObject<Document>("input.doc");
// document protection only works when document protection is turned and only editing in form fields is allowed.
doc->Protect(ProtectionType::AllowOnlyFormFields, u"password");
// save the protected document.
doc->Save(u"Protected.Dotm");  

Utforska SVG konverteringsalternativ med C++

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