Open and save Word document in Azure Functions v4
14 Sep 20246 minutes to read
Syncfusion DocIO is a .NET Core Word library used to create, read, edit and convert Word documents programmatically without Microsoft Word or interop dependencies. Using this library, you can open and save Word document in Azure Functions v4.
Steps to open and save Word document in Azure Functions v4
Step 1: Create a new Azure Functions project.
Step 2: Create a project name and select the location.
Step 3: Select function worker as .NET 8.0(Long Term Support).
Step 4: Install the Syncfusion.DocIO.Net.Core NuGet package as a reference to your project from NuGet.org.
NOTE
Starting with v16.2.0.x, if you reference Syncfusion assemblies from trial setup or from the NuGet feed, you also have to add “Syncfusion.Licensing” assembly reference and include a license key in your projects. Please refer to this link to know about registering Syncfusion license key in your application to use our components.
Step 5: Include the following namespaces in the Function1.cs file.
using Syncfusion.DocIO;
using Syncfusion.DocIO.DLS;
Step 6: Add the following code snippet in Run method of Function1 class to perform *open an existing Word document.
//Gets the input Word document as stream from request
Stream stream = req.Content.ReadAsStreamAsync().Result;
//Loads an existing Word document
using WordDocument document = new WordDocument(stream,FormatType.Docx);
Step 7: Add below code example to add a paragraph in the Word document.
//Access the section in a Word document.
IWSection section = document.Sections[0];
//Add a new paragraph to the section.
IWParagraph paragraph = section.AddParagraph();
paragraph.ParagraphFormat.FirstLineIndent = 36;
paragraph.BreakCharacterFormat.FontSize = 12f;
IWTextRange text = paragraph.AppendText("In 2000, Adventure Works Cycles bought a small manufacturing plant, Importadores Neptuno, located in Mexico. Importadores Neptuno manufactures several critical subcomponents for the Adventure Works Cycles product line. These subcomponents are shipped to the Bothell location for final product assembly. In 2001, Importadores Neptuno, became the sole manufacturer and distributor of the touring bicycle product group.");
text.CharacterFormat.FontSize = 12f;
Step 8: Add below code example to save the Word document.
MemoryStream memoryStream = new MemoryStream();
//Saves the Word document file.
document.Save(memoryStream, FormatType.Docx);
//Reset the memory stream position.
memoryStream.Position = 0;
//Create the response to return.
HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);
//Set the Word document saved stream as content of response.
response.Content = new ByteArrayContent(memoryStream.ToArray());
//Set the contentDisposition as attachment.
response.Content.Headers.ContentDisposition = new ContentDispositionHeaderValue("attachment")
{
FileName = "Sample.docx"
};
//Set the content type as Word document mime type.
response.Content.Headers.ContentType = new System.Net.Http.Headers.MediaTypeHeaderValue("application/docx");
//Return the response with output Word document stream.
return response;
Step 9: Right click the project and select Publish. Then, create a new profile in the Publish Window.
Step 10: Select the target as Azure and click Next button.
Step 11: Select the Create new button.
Step 12: Click Create button.
Step 13: After creating app service then click Finish button.
Step 14: Click the Publish button.
Step 15: Publish has been succeed.
Step 16: Now, go to Azure portal and select the App Services. After running the service, click Get function URL by copying it. Then, paste it in the below client sample (which will request the Azure Functions, to perform open and save Word document. You will get the output Word document as follows.
Steps to post the request to Azure Functions
Step 1: Create a console application to request the Azure Functions API.
Step 2: Add the following code snippet into Main method to post the request to Azure Functions with template Word document and get the resultant Word document.
//Reads the template Word document.
FileStream fs = new FileStream(@"../../Data/Input.docx", FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite);
fs.Position = 0;
//Saves the Word document in memory stream.
MemoryStream inputStream = new MemoryStream();
fs.CopyTo(inputStream);
inputStream.Position = 0;
try
{
Console.WriteLine("Please enter your Azure Functions URL :");
string functionURL = Console.ReadLine();
//Create HttpWebRequest with hosted azure functions URL.
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(functionURL);
//Set request method as POST.
req.Method = "POST";
//Get the request stream to save the Word document stream.
Stream stream = req.GetRequestStream();
//Write the Word document stream into request stream.
stream.Write(inputStream.ToArray(), 0, inputStream.ToArray().Length);
//Gets the responce from the Azure Functions.
HttpWebResponse res = (HttpWebResponse)req.GetResponse();
//Saves the Word document stream.
FileStream fileStream = File.Create("Sample.docx");
res.GetResponseStream().CopyTo(fileStream);
//Dispose the streams.
inputStream.Dispose();
fileStream.Dispose();
}
catch (Exception ex)
{
throw;
}
From GitHub, you can download the console application and Azure Functions v4.
Click here to explore the rich set of Syncfusion Word library (DocIO) features.