jpg to doc

Convert JPG to Word document using C# .NET.

JPG images are widely used for storing and sharing visual content due to their compact size and universal compatibility. On the other hand, Word documents offer a versatile format that supports both text and images, allowing for easy editing, formatting, and content management. Therefore, by converting JPG images to Word documents combines the best of both worlds – you retain the visual clarity of your images while gaining the flexibility to edit and manipulate content within a document.

JPG to Word Conversion API

GroupDocs.Conversion Cloud SDK for .NET provides a powerful and straightforward solution for converting JPG images to Word documents. With just a few lines of code, you can convert a JPG image into an editable Word document (DOCX), while preserving the quality and layout of the original content.

In order to use the SDK, first we need to install it by searching GroupDocs.Conversion-Cloud in NuGet package manager and click the Install button. Another option is to execute the following command in package manager console.

NuGet\Install-Package GroupDocs.Conversion-Cloud -Version 24.2.0

After the installation, please obtain your personalized API credentials(i.e. Client ID and Client Secret). You may visit this short tutorial explaining the details on how to get the API credentials.

Convert JPG to Word in C# .NET

In this section, we are going to explore the details on how we can automate the JPG to Word conversions so that it can be easily integrated into larger workflows. We are also going to witness the flexibility and efficiency of handling the complex conversion tasks with ease.

  1. Create an instance of Configuration class where we pass client credentials as arguments.
var configurations = new Configuration(clientId, clientSecret1);
  1. Initialize the ConvertApi where we pass Configuration object as an input argument.
var apiInstance = new ConvertApi(configurations);
  1. Upload the input JPG image to the cloud storage.
fileUpload.UploadFile(new UploadFileRequest("sample.jpg", stream));
  1. Create an instance ConvertSettings where we specify the name of input JPG image, resultant format as doc and the name of the resultant DOC file as arguments.
var settings = new ConvertSettings{...}
  1. Call the ConvertDocumentRequest API to convert JPG to Word document and save the resultant DOC file to the cloud storage.
var response = apiInstance.ConvertDocument(new ConvertDocumentRequest(settings));
jpg to doc

Image:- Preview of JPG to Word document conversion.

The input JPG image and the resultant resultant Word document generated in the above example can be downloaded from source.jpg and converted.doc.

Photo to Word Converter using cURL Commands

By using simple cURL commands, you can send API requests to the GroupDocs.Conversion Cloud to convert your JPG images into editable Word documents (DOCX). This approach not only saves time but also provides a reliable way to convert images to Word documents without requiring extensive coding knowledge, making it ideal for quick and automated solutions.

To begin using this approach, first we need to generate a JWT access token and then, execute the following cURL command to perform JPG to Word document conversion. After successful conversion, the resultant Word Doc is stored in the cloud storage.

curl -v "https://api.groupdocs.cloud/v2.0/conversion" \
-X POST \
-H "accept: application/json" \
-H "authorization: Bearer {accessToken}" \
-H "Content-Type: application/json" \
-d "{  \"StorageName\": \"default\",  \"FilePath\": \"{inputImage\",  \"Format\": \"doc\", \"OutputPath\": \"{resultantDOC\"}"

Please replace inputImage with the name of input JPG image, resultantDOC with the name of resultant Word document and accessToken with a personalized JWT access token.

  • In order to save the resultant Word document on local drive, please execute the following cURL command.
curl -v "https://api.groupdocs.cloud/v2.0/conversion" \
-X POST \
-H "accept: application/json" \
-H "authorization: Bearer {accessToken}" \
-H "Content-Type: application/json" \
-d "{  \"StorageName\": \"default\",  \"FilePath\": \"{sourceImage}\",  \"Format\": \"doc\"}" \
-o "Resultant.doc"

Free JPG to Word Converter

In order to experience the amazing capabilities of GroupDocs.Conversion Cloud REST API, you may consider using our free JPG to Word DOC Converter App. This lightweight and super-efficient App, enables you to experience the amazing capabilities of REST API within a web browser.

JPG to DOC conversion app

Conclusion

Converting JPG images to Word documents is a practical solution that enhances content editing, formatting, and accessibility. Whether you choose to use the GroupDocs.Conversion Cloud SDK for .NET, which offers robust features and seamless integration into your applications, or opt for the straightforward cURL command approach for quick and automated conversions, both methods deliver reliable results.

We highly recommend visiting the following links to learn more about: