word to tiff

Convert Word to TIFF C# .NET

The Word documents are ubiquitous, and they are used for various purposes, including creating reports, contracts, and legal documents. However, there are instances where the content of Word documents needs to be saved as high-quality images for printing, archiving, or sharing. TIFF format has emerged as the preferred format for high-quality images, offering lossless compression and compatibility with various platforms. In this article, we’ll explore the importance of converting Word documents to TIFF format and provide a comprehensive guide to convert Word to TIFF using .NET Cloud SDK.

Word to TIFF Document Conversion API

Aspose.Words Cloud SDK for .NET is an amazing solution to convert the Word documents to TIFF format. It’s a REST API that allows you to create, modify, and convert Word documents programmatically. Using this API, you can easily convert Word documents to various formats, including TIFF. The SDK provides a simple and easy-to-use interface to interact with the Aspose.Words Cloud API, allowing you to convert Word documents to TIFF format with just a few lines of code.

Now in order to use the SDK, please search Aspose.Words-Cloud in NuGet packages manager and click the Add Package button to add the reference of SDK in .NET project. Subsequently, login to Cloud dashboard and obtain your client credentials.

Convert Word to TIFF in C#

We are going to discuss the details on how to convert Word to TIFF using C# .NET. Please take a look over the following code snippet that enables you to perform Word to TIFF document conversion.

word to tiff online

Image:- Preview of Word to TIFF conversion.

Let’s develop understanding about the conversion code snippet.

var config = new Configuration { ClientId = clientID, ClientSecret = clientSecret };
var wordsApi = new WordsApi(config);

Create an object of Configuration and WordsApi instance where client credentials are used as arguments.

// Create FileUpload request
var fileRequest = new UploadFileRequest(inputStream,"sourceFile.docx");
// Upload the file to Cloud storage
wordsApi.UploadFile(fileRequest);

Read the input word document and upload to cloud storage.

var response = new GetDocumentWithFormatRequest("sourceFile.docx", format: format, outPath: resultant);

Create an instance of GetDocumentWithFormat object where we provide the name of input Word document, resultant format as TIFF and the name for resultant TIFF image as arguments.

wordsApi.GetDocumentWithFormat(response);

Now, call the API to convert Word to TIFF and save the output to cloud storage.

If we skip the outPath argument, the resultant TIFF image will be returned in response stream.

  • The input word document used in the above example can be downloaded from input-sample.docx.
  • The resultant TIFF generated can also be defined from myOutput.tiff.

DOC to TIFF using cURL Commands

It is possible to convert Word documents to TIFF format using cURL commands. Aspose.Words Cloud API provides a simple REST API that can be accessed using cURL commands to convert Word documents to TIFF format. You can send a HTTP request to the API endpoint with the necessary parameters and authentication information to convert the Word document to TIFF format.

So, first we need to generate a JWT access token (based on client credentials) while executing the following command:

curl -v "https://api.aspose.cloud/connect/token" \
-X POST \
-d "grant_type=client_credentials&client_id=ee170169-ca49-49a4-87b7-0e2ff815ea6e&client_secret=7f098199230fc5f2175d494d48f2077c" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Accept: application/json"

Now, Please execute the following command, which loads the input Word document from cloud storage and converts it to TIFF image. The resultant TIFF image is then saved on a local drive.

curl -v "https://api.aspose.cloud/v4.0/words/{sourceFile}?format=tiff" \
-X GET \
-H  "accept: application/octet-stream" \
-H  "Authorization: Bearer {accessToken}" -o "{outputFile}"

Replace {sourceFile} with the name of input Word document already present in the Cloud storage, {accessToken} with JWT access token generated above and {outputFile} with name of resultant TIFF image to be saved on local drive.

Conclusion

In conclusion, converting Word documents to TIFF format can be a valuable tool for maintaining document integrity and ensuring compatibility across various platforms. As we have seen, there are several approaches to converting Word to TIFF using C# .NET, including using Aspose.Words Cloud SDK for .NET or cURL commands. Whether you choose to use a cloud-based REST API or work with cURL commands, it is important to understand the nuances of each approach and choose the best option for your specific use case. So with these right tools and knowledge, converting Word to TIFF can be a straightforward and effective process, providing you with high-quality images that meet your business requirements.

Please visit the following links to learn more about: