Search
Follow Us
Categories
- Success Stories(157)
Archives
Monthly Archives: November 2021
Convert RTF Documents to PDF using Python
RTF format was introduced by Microsoft to create rich text documents. The interoperability offered by RTF format allows you to exchange the content between different Microsoft products. Alongside, PDF is one of the most widely used document formats that provides cross-platform support. In certain cases, you may need to convert the RTF document to PDF programmatically. To achieve that, this article covers how to convert an RTF document to PDF using 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 the 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.
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 Features to a CSV File using 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#.
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.
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.
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.
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#.
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.