There could be various scenarios when you have to combine multiple Word documents into a single file. For example, when multiple persons are writing different sections of a document and you need to combine the content at the end. On the other hand, you may need to merge all the invoices in one Word document. To perform this merging programmatically, this article covers how to combine multiple Word DOCX/DOC documents in Python.
Convert Shapefile to GeoJSON and GeoJSON to Shapefile using C#
There are different situations where having data in a Shapefile or GeoJSON format can be helpful. If you have a Shapefile that you want to convert to GeoJSON or vice versa, you can easily achieve it programmatically with C#. In this article, you will learn how to do just that.
Compare Two Word Documents in Python
Comparing Word documents is essential for spotting changes. While online tools exist, you often need an in‑app solution. This guide demonstrates how to compare two Word documents in Python.
Convert HTML to PDF File on Linux in .NET
HTML files are widely used over the internet. In various cases, you need to convert HTML files to PDF documents. Accordingly, this article covers how to convert an HTML file to a PDF document on Linux in .NET.
Convert RTF Documents to PDF using Python
Often you have to convert RTF files to PDF before sharing. To achieve that, this article covers how to convert an RTF file to PDF in Python.
How to Read Excel Files in Java
MS Excel files are largely used to keep tabular data in the form of worksheets. Often, the huge datasets are also maintained in Excel files. Therefore, you may come across a scenario where you need to read and fetch data from the worksheets in an Excel file. To achieve that, this article shows how to read the Excel file in Java. We will demonstrate how to read the whole Excel file or only a single worksheet programmatically.
Flatten or Merge the Layers of a PSD File in Java
PSD images are commonly used to design graphic content like logos, posters, or drawings. PSD files comprise different layers for different sections of the images. In certain situations, you may need to work with the layers like flatten or merge the layers of a PSD image. For instance, you can flatten the layers to restrict changes to your artwork. This article covers how to flatten or merge layers in a PSD file programmatically using Java.
Export Vector Layer to CSV in C#
There might be situations where you need to export features of a vector layer to a CSV file. For such cases, this article will teach you how to export features to a CSV file using C#.
Find and Replace Text in Word Documents using Python
Often you need to replace specific words or phrases across multiple Word files. While MS Word offers a manual replace tool, this guide shows how to programmatically find and replace text in Word documents using Python. Automate bulk updates, embed the logic in your apps, and even censor content before sharing.
Convert Word Documents to TIFF using Python
TIFF is a popular format to store raster images. Unlike other image formats, TIFF supports multiple pages. It means, a multipage TIFF file can have more than one images in the form of pages. This feature makes TIFF a suitable option to render the Word documents. To perform this conversion programmatically, this article covers how to convert Word DOCX or DOC files to TIFF using Python.