Java API to merge text to PNG

Java Cloud SDK to combine text files and export the result to PNG format

Use Java library to merge text to PNG via REST API. Easily combine two or more text files into a single PNG file using Java.

Combine text to PNG using Java REST API

Easily merge text documents and export the result to PNG graphic format in Java code. This Java library is designed to combine multiple text files into a single PNG image using the REST API, i.e. by passing HTTPS calls over the Internet.

This is a professional Cloud-native text to PNG merging solution that provides Java programmers with both great development flexibility and powerful features. By merging documents, you can automate your digital text/PNG workflows and offload some routine parts of the process to fast and efficient text processing Java software.

Merge several text into one PNG image in Java

You may need to combine text files into a single PNG image in many cases. For example, you may want to combine multiple text files together before printing or archiving.

text merging can be part of a whole integrated document-processing approach for generating PNG images from disparate data sources. Such tasks involve the use of a full-featured text/PNG manipulation Java library that will process a set of text files and merge them together in the shortest possible time, producing a compact and accurate graphical output.

Merge text to PNG in Java

To perform text to PNG merging in Java, you need at least two source text documents. For a quick start, please check out the Java code example below.

Java code example to merge TXT to PNG using REST API
Input files
Upload files you want to combine
Upload files you want to combine
Output format
Select the target format from the list
import com.aspose.words.cloud.*;

ApiClient apiClient = new ApiClient("####-####-####-####-####", "##################", null);
WordsApi wordsApi = new WordsApi(apiClient);

byte[] document = Files.readAllBytes(
   Paths.get("Input1.txt").toAbsolutePath());
DocumentEntry mergeProps = new DocumentEntry();
mergeProps.setFileReference(new FileReference("Input2.txt"));
mergeProps.setImportFormatMode("KeepSourceFormatting");

ArrayList documentEntries = new ArrayList();
documentEntries.add(mergeProps);

DocumentEntryList documentList = new DocumentEntryList();
documentList.setDocumentEntries(documentEntries);

AppendDocumentOnlineRequest appendDocumentOnline = new AppendDocumentOnlineRequest(
   document, documentList, null, null, null, null, null, null);
AppendDocumentOnline mergedDocs = wordsApi.appendDocumentOnline(appendDocumentOnline);

SplitDocumentOnlineRequest splitDocumentOnline = new SplitDocumentOnlineRequest(
   mergedDocs, "png", null, null, null, null, null, null, true, null);
wordsApi.splitDocumentOnline(splitDocumentOnline);
  
Copy Java code to the clipboard

How to use Java to merge text to PNG

  1. Install Java SDK and add the reference (import the library) to your Java project.
  2. Open the source text file in Java.
  3. Load a document to append from the Cloud storage.
  4. Call the 'appendDocumentOnline()' method, passing the output filename with the required extension.
  5. Get the combined result in PNG format as a single file.

Java library to merge TXT to PNG

Install 'Aspose.Words Cloud SDK for Java' using Maven build automation tool.

Add this dependency to your project's POM : aspose-cloud artifact.aspose-cloud-releases http://artifact.aspose.cloud/repo com.aspose aspose-words-cloud 22.4.0

As an alternative, you can clone Aspose.Words Cloud SDK for Java 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

Refer to the Repository Documentation to see the details.

5%

Subscribe to Aspose Product Updates

Get monthly newsletters and offers directly delivered to your mailbox.

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