Edit DOC in Swift SDK

Use REST API to edit DOC in Swift programmatically

When developers modify a DOC document with this Swift library, what is actually being edited is the Document Object Model (DOM). Thus, almost any changes can be made to the DOC 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 a DOC, make the necessary changes programmatically and export the result to the same or any supported save format.

View code snippet

Edit DOC in Swift using REST API

Our Swift library gives developers the ability to modify a DOC document directly by editing its Document Object Model (DOM), which means no additional software needs to be installed.

Edit text in DOC file using Swift

The most popular case to edit a DOC file is text editing. With the given software solution, you can add, modify or delete text using Swift within the document.

Edit table in DOC file using Swift

Another popular DOC 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.

Add an image to DOC file using Swift

Besides editing text and tables in DOC, there is another common option: adding images to a document in Swift. Swift developers can also add an image into a DOC file using DOM.

Edit DOC programmatically

Try this powerful Swift SDK and evaluate some options in DOC document editing. Using the following example, load your DOC document and make some changes: add text, add a table and a table cell with text or insert an image into the DOC document:

Upload a document you want to modify
Run code
Upload an image you want insert
Select the target format from the list
import AsposeWordsCloud

let config = Configuration(clientId: "####-####-####-####-####", 
   clientSecret: "##################");
let api = try WordsAPI(configuration: config);

let requestDocument = InputStream(url: URL(string: "Input.doc"))!;
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: "doc");
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.doc"))!;
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: "doc");
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.doc"))!;
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.doc"))!;
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: "doc");
let convert = try api.convertDocument(request: convertRequest);
Run code
  
Copy Swift code to the clipboard

How to edit DOC Swift REST API

  1. Install Aspose.Words Cloud for Swift
  2. Add a library reference (import the library) to your Swift project
  3. Load DOC to edit in Swift
  4. Insert content at the beginning of DOC
  5. Download the result document from the cloud storage

Swift library to use DOC editing

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.

System Requirements

Swift 4.2 or newer

Refer to the Repository Documentation to see more details.

Other supported file formats

You can perform edit operation for other file formats:

5%

Subscribe to Aspose Product Updates

Get monthly newsletters and offers directly delivered to your mailbox.

© Aspose Pty Ltd 2001-2024. All Rights Reserved.