Net Code for Merging TXT Files into PDF: A Complete Guide
// Merge TXT to HTML
using var requestDocument = File.OpenRead(localFile);
using var requestDocumentListDocumentEntries0FileReferenceStream = File.OpenRead(LocalTestDataFolder + localFile);
var requestDocumentListDocumentEntries0FileReference = new FileReference(requestDocumentListDocumentEntries0FileReferenceStream);
var requestDocumentListDocumentEntries0 = new DocumentEntry()
{
FileReference = requestDocumentListDocumentEntries0FileReference,
ImportFormatMode = "KeepSourceFormatting"
};
var requestDocumentListDocumentEntries = new List<DocumentEntry>()
{
requestDocumentListDocumentEntries0
};
var requestDocumentList = new DocumentEntryList()
{
DocumentEntries = requestDocumentListDocumentEntries
};
var appendRequest = new AppendDocumentOnlineRequest(requestDocument, requestDocumentList);
await wordsApi.AppendDocumentOnline(appendRequest);
%!(EXTRA string=TXT, string=HTML)
// Merge HTML to PDF
using var requestDocument = File.OpenRead(localFile);
using var requestDocumentListDocumentEntries0FileReferenceStream = File.OpenRead(LocalTestDataFolder + localFile);
var requestDocumentListDocumentEntries0FileReference = new FileReference(requestDocumentListDocumentEntries0FileReferenceStream);
var requestDocumentListDocumentEntries0 = new DocumentEntry()
{
FileReference = requestDocumentListDocumentEntries0FileReference,
ImportFormatMode = "KeepSourceFormatting"
};
var requestDocumentListDocumentEntries = new List<DocumentEntry>()
{
requestDocumentListDocumentEntries0
};
var requestDocumentList = new DocumentEntryList()
{
DocumentEntries = requestDocumentListDocumentEntries
};
var appendRequest = new AppendDocumentOnlineRequest(requestDocument, requestDocumentList);
await wordsApi.AppendDocumentOnline(appendRequest);
%!(EXTRA string=HTML, string=PDF)
How to Merge TXT with PDF in Cloud Apps
- Initialize WordsApi with Client Id, Client Secret, Base URL & API version
- Set requestDocument assign the local TXT file name
- Set requestDocumentListDocumentEntriesFileReference and assign local PDF file name
- Set requestDocumentListDocumentEntries and set file_reference, import_format_mode parameters
- Create DocumentEntryList instance and assing requestDocumentListDocumentEntries to document_entries parameter
- Call AppendDocumentOnlineRequest to merge TXT file with PDF document requestDocument and requestDocumentList
- Call WordsApi appendDocumentOnline with parameters
Get Started with Aspose.Total REST APIs
- Create an account at Dashboard to get free API quota & authorization details
- Get Aspose.Words and Aspose.Cells Cloud SDKs for Net source code from Aspose.Words GitHub and Aspose.Cells GitHub repos to compile/use the SDK yourself or head to the Releases for alternative download options.
- Also have a look at Swagger-based API Reference for Aspose.Words and Aspose.Cells to know more about the REST API.
Best Tools to Merge MS Word Document(TXT) and PDF Files for Data Integration
Aspose.Words Cloud provides efficient methods to merge multiple documents into a single file while preserving formatting.
Steps for Merging Documents:
- Create a MergeDocumentRequest Object to specify the source documents to be merged.
- Call the AppendDocument Method of the Aspose.Words API class instance to merge one document into another.
- Use SaveOptions to define the output format (DOCX, PDF, etc.).
- Send API Request to combine documents into a single merged output.
How to Combine MS Word and TXT with Other Formats Online
Boost your document management efficiency by merging TXT files with other formats using the robust Aspose.Words API. Seamlessly integrate your merged documents with other Aspose.Total APIs such as Aspose.Cells, Aspose.PDF, Aspose.Email, Aspose.Slides, Aspose.Diagram, Aspose.Tasks, Aspose.3D, Aspose.HTML. This all-in-one solution allows you to combine files into a single document across various formats.
For a full list of supported formats and merging features, visit the Aspose.Total Cloud page.
FAQ
- What is TXT Format?A file with .TXT extension represents a text document that contains plain text in the form of lines. Paragraphs in a text document are recognized by carriage returns and are used for better arrangement of file contents. A standard text document can be opened in any text editor or word processing application on different operating systems. All the text contained in such a file is in human-readable format and represented by sequence of characters.
- What is PDF Format?Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. The purpose of this file format was to introduce a standard for representation of documents and other reference material in a format that is independent of application software, hardware as well as Operating System. PDF files can be opened in Adobe Acrobat Reader/Writer as well in most modern browsers like Chrome, Safari, Firefox via extensions/plug-ins. Most of the commercially available software suites also offer conversion of their documents to PDF file format without the requirement of any additional software component.
- How can I get started with Aspose.Total REST APIs?Quickstart not only guides through the initialization of Aspose.Total Cloud API, it also helps in installing the required libraries.
- Where can I see the release notes for Aspose.Total Cloud API?Complete release notes can be reviewed at Aspose.Total Cloud Documentation.
- Is it safe to merge TXT with PDF in the Cloud?Of course! Aspose Cloud uses Amazon EC2 cloud servers that guarantee the security and resilience of the service. Please read more about Aspose's Security Practices.
- What file formats are supported by Aspose.Total Cloud API?Aspose.Total Cloud can merge file formats from any product family to any other product family to PDF, DOCX, XPS, image(TIFF, JPEG, PNG BMP), MD and more. Checkout the complete list of supported file formats.
- I can not find the SDK for my favorite language. What should I do?Aspose.Total Cloud is also available as a Docker Container. Try using it with cURL in case your required SDK is not available yet.