您可以使用 Aspose.Total for Android Java 包的兩個 API 在您的移動應用程序中集成 CGM 到 OTT 的轉換功能。首先,您需要使用 Aspose.PDF for Android via Java 將 CGM 文件轉換為 DOC。其次,通過使用文字處理 API Aspose.Words for Android via Java ,您可以將 DOC 渲染為 OTT。
通過 Java 在 Android 上將 CGM 轉換為 OTT
轉換要求
您可以直接從 Maven 通過 Java 輕鬆使用 Aspose.Total for Android 和安裝 Aspose.PDF for Android via Java 和 Aspose.Words for Android via Java 在您的應用程序中。
或者,您可以從 下載 獲取 ZIP 文件。
// load CGM file with an instance of Document class
Document document = new Document("template.cgm");
// save CGM as a DOC
document.save("DocOutput.doc", SaveFormat.DOC);
// load DOC with an instance of Document
Document outputDocument = new com.aspose.words.Document("DocOutput.doc");
// call save method while passing SaveFormat.OTT
outputDocument.save("output.ott", SaveFormat.OTT);
通過 Java 在 Android 上獲取 CGM 文件信息
在將 CGM 轉換為 OTT 之前,您可能需要有關文檔的信息,包括作者、創建日期、關鍵字、修改日期、主題和標題。此信息有助於轉換過程的決策。使用強大的 Aspose.PDF for Android via Java API,您可以獲得所有內容。要獲取有關 CGM 文件的文件特定信息,首先使用 getInfo 方法。一旦檢索到 DocumentInfo 對象,您就可以獲取各個屬性的值。
// load CGM document
Document doc = new Document("template.cgm");
// get document information
DocumentInfo docInfo = doc.getInfo();
// show document information
System.out.println("Author: " + docInfo.getAuthor());
System.out.println("Creation Date: " + docInfo.getCreationDate());
System.out.println("Keywords: " + docInfo.getKeywords());
System.out.println("Modify Date: " + docInfo.getModDate());
System.out.println("Subject: " + docInfo.getSubject());
System.out.println("Title: " + docInfo.getTitle());
通過 Java 在 Android 中的 OTT 文檔中插入尾註
除了文檔轉換,您還可以使用 Aspose.Words for Android via Java API 在您的 Android 應用程序中添加許多其他功能。該功能之一是在 OTT 文檔中插入尾註和編號。如果要在 OTT 文檔中插入腳註或尾註,請使用 DocumentBuilder.InsertFootnote 方法。此方法在文檔中插入腳註或尾註。 EndnoteOptions 和 FootnoteOptions 類表示腳註和尾註的編號選項。
// load document
Document doc = new Document("input.DOC");
// initialize document builder
DocumentBuilder builder = new DocumentBuilder(doc);
// add text in it
builder.write("Some text");
// insert footnote
builder.insertFootnote(FootnoteType.ENDNOTE, "Endnote text.");
// initialize endnote options
EndnoteOptions option = doc.getEndnoteOptions();
// set restart rule
option.setRestartRule(FootnoteNumberingRule.RESTART_PAGE);
// set position
option.setPosition(EndnotePosition.END_OF_SECTION);
// save the document to disk.
doc.save("output.ott", SaveFormat.OTT);
使用 Android 探索 CGM 轉換選項
什麼是 CGM 文件格式
計算機圖形圖元文件 (CGM) 是 2D 矢量圖形、光柵圖形和文本的文件格式,由 ISO/IEC 8632 定義。CGM 文件可能包含 2D 矢量圖形、光柵圖形和文本。可以存儲圖形的所有方面,包括調色板、線寬、字體以及文本大小和位置。 CGM 文件通常具有 .cgm 文件擴展名,但它們也可以使用 .cgi、.cgmz 或 .cgz。CGM 是一種平台無關的文件格式,這意味著它可以在任何類型的計算機上使用,無論操作系統。 CGM 文件通常用於矢量圖形,因為它們可以縮放而不會降低質量。 CGM 文件也用於技術製圖,例如工程圖,因為它們可以以任何尺寸準確打印。CGM 文件可以由各種軟件程序創建,包括矢量圖形編輯器、CAD 程序和文字處理器。許多可以導出為 CGM 格式的程序也支持導入 CGM 文件。
什麼是 OTT 文件格式
OTT(OpenDocument 模板)是一種用於創建 OpenDocument 格式模板的文件格式。 OpenDocument 是辦公文檔的開放標準,包括文本文檔、電子表格、演示文稿等。 OTT 文件專門用作創建具有預定義樣式、格式和內容的新文檔的模板。
OTT 文件基於基於 XML 的 OpenDocument 格式,可確保支持的不同辦公套件和應用程序之間的互操作性和兼容性OpenDocument 標準,例如 LibreOffice、Apache OpenOffice 和 Calligra Suite。
當您打開 OTT 文件時,它會作為創建新文檔的起點。它包含佔位符、預定義樣式和其他有助於構建內容並保持整個文檔一致性的元素。用戶可以根據需要修改模板,例如用實際內容替換佔位符、調整樣式以及添加或刪除部分。
使用 OTT 文件的優勢在於它們提供了一種方便高效的方式來創建文檔一致的格式和佈局。通過從模板開始,用戶可以節省從頭開始設置文檔結構和格式的時間和精力。
OTT 文件可以輕鬆共享和分發,允許其他人使用相同的模板創建具有統一的外觀和感覺。它們還支持自定義選項,允許用戶根據自己的特定需求對模板進行個性化設置。