English

Find and Replace Text in Word Documents using Python

Quite often, you need to replace a particular text or phrase in the Word documents. MS Word has a built-in feature for such cases and you can replace the desired text with one click. In this article, you will learn how to programmatically find and replace text in Word documents using Python. This could be useful when you need to replace text in a bunch of documents. Also, you can embed this feature in your Python applications to censor the Word documents before sharing.
November 9, 2021 · 3 min · Usman Aziz

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.
November 8, 2021 · 2 min · Usman Aziz

Disable Compatibility Checker in Excel Files using Java

Various versions of MS Excel are available and being used around the world. This makes it possible that the newer versions provide features that may not be available in the older ones. Therefore, MS Excel uses compatibility checker to degrade the features which are not supported by an older format when saving the files. While manipulating Excel files, you may need to disable the compatibility checker dynamically. To achieve it, this article shows how to disable the compatibility checker for MS Excel workbooks in Java.
November 8, 2021 · 2 min · Usman Aziz

Insert or Extract Image from a OneNote File in Java

OneNote files can include visual information like images or drawings, in addition to text contents. In certain scenarios, you may need to insert or extract images in a OneNote document. This article explains how you can insert or extract images in a .one file using Java.
November 7, 2021 · 2 min · Farhan Raza

Read Vector Layer Features, Points, and Geometries from CSV Files

There might be situations where you have geospatial data in CSV format, and you want to read that data from within your .NET application. For such cases, this article will teach you how to read vector layer features, points, and geometries from CSV files using C#.
November 5, 2021 · 3 min · Muhammad Ahmad

Convert Word Documents to Markdown using Python

Markdown (MD is a popular format that is used to write articles, blogs, documentation, etc. However, sometimes it becomes difficult to remember and write the Markdown syntax. In such cases, you can simply write content in a Word document and convert it to Markdown. To automate Word to Markdown conversion, this article covers how to convert Word (.docx or .doc) documents to Markdown (.md) files using Python.
November 5, 2021 · 2 min · Usman Aziz

Convert Word Documents to PNG, JPEG, or BMP in Python

The conversion of MS Word files to image formats lets you embed the document’s pages into your web or desktop applications. In order to perform this conversion from within the Python applications, this article covers how to convert Word DOCX or DOC files to PNG, JPEG, or BMP images using Python. Moreover, you will learn how to control the Word to image conversion using different options.
November 4, 2021 · 3 min · Usman Aziz

Convert IFC to JPG or PNG Image using C#

IFC files are used for modeling buildings, facilities, and different infrastructure. However, limited applications support this file format so you may need to convert an IFC file to a JPG or PNG image for previewing the contents in different system environments. This article covers how to convert an IFC file an image programmatically with C#.
November 4, 2021 · 2 min · Farhan Raza

Render Map to BMP Format using C#

Map data can be available in different formats like KML, GeoTiff, GeoJSON, Shapefile, etc. There might be situations where you need to render the map data as BMP images. For that, this article will teach you how to render map data in BMP format using C#.
November 4, 2021 · 3 min · Muhammad Ahmad

Convert Scanned PDF to Word DOCX or DOC File in Java

The PDF files created using a camera or scanner device contain scanned images. Such images cannot be processed for text selection or editing so you might need to convert scanned PDF to Word documents in DOCX or DOC format. This article covers how to convert a scanned PDF file to a Word file programmatically using Java.
November 3, 2021 · 2 min · Farhan Raza