English

Convert Excel XLS to Image in Python

In various cases, Excel spreadsheets are required to be embedded in the web or desktop applications. One of the solutions in such cases is the conversion of Excel worksheets to image formats. In this article, you will learn how to convert Excel XLSX or XLS to PNG, JPEG, SVG, or other images in Python.
May 28, 2021 · 3 min · Usman Aziz

Recognize Text by Performing OCR on Image from URL with Java

You can convert a text from the image to an editable format with Optical Character Recognition (OCR). Images like JPG, PNG, TIFF, BMP, GIF, etc. are used everywhere on the internet and you may need to recognize text from an online image. You can easily use the URL link to that image to perform the OCR on it, instead of saving or downloading the file. The following headings discuss the details further.
May 27, 2021 · 3 min · Farhan Raza

Convert XPS or OXPS Files to PDF Format using C++

XPS and OXPS documents define the layout, appearance, and printing information. These documents are similar to PDF files. Due to the high popularity of the PDF format, you might find yourself in situations where you need to convert XPS and OXPS documents to PDF format. To that end, this article will teach you how to convert XPS and OXPS documents to PDF format using C++.
May 27, 2021 · 3 min · Muhammad Ahmad

Read Barcodes in Node.js Applications

Barcodes have become an essential part of the purchase process of the products. In a barcode, the information is represented as a one or two-dimensional graphical object. These graphical objects are recognized to read the encoded information. In order to automate barcode recognition, this article covers how to read barcodes in Node.js applications.
May 27, 2021 · 3 min · Usman Aziz

Merge or Unmerge Cells in an Excel Worksheet using C++

Merging and unmerging cells is a simple and commonly used feature of Microsoft Excel. Merging cells might prove to be helpful in scenarios, for example, when you have a worksheet with multiple columns that share the same heading. You can merge the cells above the columns to give them a common heading. In case merged cells are no longer required, you can unmerge them just as easily. You might need to perform these tasks within your C++ applications. For that, this article will teach you how to merge and unmerge cells in Excel worksheets programmatically using C++.
May 25, 2021 · 5 min · Muhammad Ahmad

Convert Excel Files to HTML in PHP

In order to embed Excel spreadsheets within your web pages, you need to convert them into either images or HTML content. Since HTML is more suitable for websites, therefore, this article covers how to convert Excel XLSX or XLS files to HTML pages in PHP.
May 25, 2021 · 3 min · Usman Aziz

Split Text to Columns in Excel using Java

MS Excel provides the Text to Columns feature to split the text into multiple columns. The splitting can be based on a blank space, a comma, a special character, etc. In order to automate the feature, this article covers how to perform Excel’s Text to Columns from within your Java applications. The step-by-step guide and code sample will show you how to split text in a column in an Excel worksheet.
May 25, 2021 · 2 min · Usman Aziz

Split Text into Columns in Excel Files using C++

Microsoft Excel allows splitting text into multiple columns using separators like blank space, comma, or other characters. This feature can be helpful in scenarios such as converting the comma-separated data exported from a database table to tabular form. To that end, this article will teach you how to split text into columns in Excel files using C++.
May 24, 2021 · 2 min · Muhammad Ahmad

Convert Email to HTML in Python

Email messages are often required to be converted to HTML format to embed them within the web pages. In order to automate this conversion, in this article, you will learn how to convert emails to HTML using Python. Particularly, the article will cover how to convert EML or MSG email files to HTML pages.
May 24, 2021 · 3 min · Usman Aziz

Convert MPP File to PDF Programmatically using C# .NET

Microsoft Project Files are used to organize and manage different tasks in a project. You can convert MPP files to PDF programmatically using C#. You can find several options for the conversion in the following headings.
May 24, 2021 · 3 min · Farhan Raza