English

Convert JPG Images to PNG in C#

JPG is one of the most popular and widely used image formats. However, JPG images lose quality each time they are saved. Therefore, you may need to convert them into a lossless format such as PNG. To perform this conversion programmatically from within the .NET applications, this article shows how to convert a JPG image to PNG in C#.
November 15, 2021 · 2 min · Usman Aziz

Convert JSON to GeoJSON using C#

There might be situations where you need to convert JSON files to GeoJSON. If you have multiple files, doing this task programmatically will prove to be helpful. To that end, this article will teach you how to convert JSON files to GeoJSON using C#.
November 13, 2021 · 2 min · Muhammad Ahmad

Combine Word Documents using Python

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

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.
November 11, 2021 · 2 min · Muhammad Ahmad

Compare Two Word Documents in Python

Comparison of Word documents is performed in various cases to identify the differences. Various online tools allow you to compare Word documents, however, you may need to implement the comparison feature from within your applications. To achieve it, this article shows how to compare two Word documents in Python.
November 11, 2021 · 3 min · Usman Aziz

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.
November 11, 2021 · 2 min · Farhan Raza

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

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 an Excel file in Java. We will demonstrate how to read the whole Excel file or only a single worksheet programmatically.
November 10, 2021 · 4 min · Usman Aziz

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.
November 9, 2021 · 2 min · Farhan Raza

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#.
November 9, 2021 · 2 min · Muhammad Ahmad