When developers modify a document with the given Swift solution, what is actually being edited is the Document Object Model (DOM). Thus, almost any changes can be made to the document represented as DOM. With the provided Swift SDK, developers can easily edit a document: modify text, update tables, add images and so on. Just load your Word, PDF or file in a supported load format, make the necessary changes programmatically and export the result to a supported save format.
Our Swift library gives developers the ability to modify a document directly by editing its Document Object Model (DOM), which means no additional software needs to be installed.
It is important to know that using this Swift solution, you can edit a document in any supported format. For example, it is possible to load a file in PDF, DOCX, DOC, RTF, ODT, EPUB, HTML and other formats, and then modify this file and save it in the same format or in any other supported format.
The most popular case to edit Word, PDF or any other document is text editing. With the given software solution, you can add, modify or delete text using Swift within the document.
Another popular document editing option is table editing. Our Swift SDK allows you to work with tables and text in table cells.
Swift developers can add or remove table and table cells, as well as add, edit and remove text within them.
Besides editing text and tables, there is another common option: adding images to a document in Swift. Swift developers can also add an image into a file using DOM.
Try this powerful Swift SDK and evaluate some options in document editing. Using the following example, load your document and make some changes: add text, add a table and a table cell with text or insert an image into the document:
import AsposeWordsCloud
let config = Configuration(clientId: "####-####-####-####-####",
clientSecret: "##################");
let api = try WordsAPI(configuration: config);
let requestDocument = InputStream(url: URL(string: "Input.docx"))!;
let requestParagraph = ParagraphInsert()
.setText(text: "Morbi enim nunc faucibus a.");
let insertParagraphRequest = InsertParagraphOnlineRequest(document: requestDocument,
paragraph: requestParagraph);
let insertParagraph = try api.insertParagraphOnline(request: insertParagraphRequest);
let convertRequest = ConvertDocumentRequest(document: insertParagraph.document.values.first,
format: "docx");
let convert = try api.convertDocument(request: convertRequest);
import AsposeWordsCloud
let config = Configuration(clientId: "####-####-####-####-####",
clientSecret: "##################");
let api = try WordsAPI(configuration: config);
let requestDocument = InputStream(url: URL(string: "Input.docx"))!;
let requestTable = TableInsert()
.setColumnsCount(columnsCount: 1)
.setRowsCount(rowsCount: 2);
let insertTableRequest = InsertTableOnlineRequest(document: requestDocument,
table: requestTable, nodePath: "");
let insertTable = try api.insertTableOnline(request: insertTableRequest);
let convertRequest = ConvertDocumentRequest(document: insertTable.document.values.first,
format: "docx");
let convert = try api.convertDocument(request: convertRequest);
import AsposeWordsCloud
let config = Configuration(clientId: "####-####-####-####-####",
clientSecret: "##################");
let api = try WordsAPI(configuration: config);
let requestDocument = InputStream(url: URL(string: "Input1.docx"))!;
let requestDrawingObject = DrawingObjectInsert()
.setHeight(height: 0)
.setLeft(_left: 0)
.setRelativeHorizontalPosition(
relativeHorizontalPosition: DrawingObjectInsert.RelativeHorizontalPosition.margin)
.setRelativeVerticalPosition(
relativeVerticalPosition: DrawingObjectInsert.RelativeVerticalPosition.margin)
.setTop(top: 0)
.setWidth(width: 0)
.setWrapType(wrapType: DrawingObjectInsert.WrapType.inline);
let requestImageFile = InputStream(url: URL(string: "Input2.docx"))!;
let insertDrawingObjectRequest = InsertDrawingObjectOnlineRequest(document: requestDocument,
drawingObject: requestDrawingObject, imageFile: requestImageFile, nodePath: "sections/0");
let insertDrawingObject =
try api.insertDrawingObjectOnline(request: insertDrawingObjectRequest);
let convertRequest = ConvertDocumentRequest(
document: insertDrawingObject.document.values.first, format: "docx");
let convert = try api.convertDocument(request: convertRequest);
You can use Swift package manager and Cocoapods dependency manager to install Aspose.Words Cloud SDK for Swift. Detailed information on installing the package is given in the "Installation and Usage" section.
As an alternative, you can clone Aspose.Words Cloud SDK for Swift source code from GitHub and use it in your project.
Please follow these Instructions to quickly get the necessary security credentials and access our REST API.