English

Generate Aztec Barcode in C#

Aztec barcode is a two-dimensional barcode containing a square grid and a bulls-eye pattern at the center. It can contain a different number of layers depending on different symbol modes. In some scenarios, you may need to create an Aztec code to produce encoded codes. Accordingly, this article covers how to generate an Aztec Barcode programmatically in C#.
September 21, 2022 · 2 min · Farhan Raza

Python: Adjust Height of Row and Width of Column in Excel

If you are a programmer, you may need to programmatically manipulate the height and width of rows and columns in Excel, respectively. Accordingly, in this article, you will learn how to adjust row height and column width in Excel in Python.
September 21, 2022 · 3 min · Usman Aziz

Add Comment to Visio VSD VSDX Diagram in Java

Visio diagram files can contain a different type of diagrams like flow charts, organizational charts, etc. In certain use cases, you might want to review Visio files and add comments on different pages and shapes. In accordance with such use cases, this article explains how to add a comment to a VSD or VSDX Visio diagram programmatically in Java.
September 21, 2022 · 2 min · Farhan Raza

Convert GDB to CSV in C#

A GDB file can contain routes, tracks, waypoints, and other relevant information. In some scenarios, you might want to transfer such data to a GPS device or pass it over to some other GIS application. So converting a GDB file to CSV format can be helpful in various scenarios. Accordingly, this article explains how to convert a GDB file to a comma-separated CSV file programmatically in C#.
September 20, 2022 · 2 min · Farhan Raza

Create Gaussian Blur Filter on SVG Image in C#

SVG or Scalable Vector Graphic images are popular due to their scalability and quality feature. You can apply several filters on SVG images based on your requirements. To blur and smooth an SVG image, you may apply a Gaussian blur filter. Following such use cases, this article discusses how to create a Gaussian blur filter on SVG image programmatically in C#.
September 20, 2022 · 2 min · Farhan Raza

Graphics Programming in C#

Graphics programming in C# might seem easier or harder than you might think. In this article, you will learn how to create stunning vector graphics programmatically in C#. Whether you’re creating graphics as part of your current project or as the basis of your own game or app! You’ll learn to create beautiful visuals with ease.
September 20, 2022 · 5 min · Muzammil Khan

Crop Images Programmatically in Java

In the previous blog posts, we have shown you how to implement various image editing features such as resizing, flipping, and rotating images. Along with these features, image cropping is immensely used to trim the unwanted areas in the images. Also, you crop an image to focus on a particular object in the frame. In this article, you will learn how to crop images programmatically in Java. We will demonstrate how to crop an image using shift values or with a rectangle.
September 19, 2022 · 3 min · Usman Aziz

Generate Pdf417 Barcode in C#

In different situations, you may need to generate Pdf417 barcode. Accordingly, this article explains how to generate Pdf417 barcode and customize it with different variations in C# as per your requirements.
September 16, 2022 · 2 min · Farhan Raza

Merge Multiple Images Programmatically in Java

There is a range of scenarios where image editing and manipulation is performed. In image editing, merging images is an important feature that is used to combine two or more images, for example, to make a collage. In this article, you will learn how to merge multiple images into a single image in Java. We will explicitly demonstrate how to merge images horizontally or vertically.
September 16, 2022 · 3 min · Usman Aziz

Extract Data from Image in Java

Optical mark recognition (OMR) is an electronic process that allows the reading and capturing of data marked by people on a test or a survey, consisting of bubble or square inputs. You can easily perform OMR operations on the scanned images of such survey forms, questionnaires, or test sheets and read the user inputs programmatically. In this article, you will learn how to perform OMR and extract data from an image in Java.
September 16, 2022 · 5 min · Muzammil Khan