Scan QR Code in C#
Quick Response (QR) codes are two-dimensional barcodes that store information in a matrix of black squares on a white background. QR codes can store various types of data, including numeric,… Read More »Scan QR Code in C#
Quick Response (QR) codes are two-dimensional barcodes that store information in a matrix of black squares on a white background. QR codes can store various types of data, including numeric,… Read More »Scan QR Code in C#
If you are working on an image editing application and you need an easy-to-implement yet precise cropping mechanism, this article is going to help you a lot. Because in this… Read More »Crop Images Programmatically in C#
Adobe’s popular Photoshop Application uses PSD (Photoshop Document) as a native image file format. It is commonly used to create logos, brochures, and other images where the PSD file contains… Read More »Add Watermark to PSD in C#
A QR code is a two-dimensional barcode that can be used to store some useful data for identifying or tracking information. Sometimes you may need to create a QR code… Read More »Generate QR Code in C#
As a programmer, you may often need to manipulate the images from within your Java applications. The image manipulation and editing may also include rotation of an Image at a… Read More »Rotate Images Programmatically in Java
While browsing various websites, you may want to download the HTML content of a webpage as a PDF file for later use. In this case, you need an all-in-one converter… Read More »Generate PDF from HTML in C#
Markdown is a markup language to create formatted text. Whereas, HTML format is widely used in web applications. You can not simply convert the MD file by changing the file… Read More »Convert Markdown to HTML in C#
SVG files define the graphics in XML format. They can be scaled or printed at any size without disturbing the quality of the image. In some cases, you may need… Read More »Rotate SVG Image in C#
DGN files are 2D or 3D drawing files that are created and supported by CAD applications. DGN file is used to create and save designs for construction projects such as… Read More »Convert DGN to PDF in C#
We can perform OCR on images or scanned documents to recognize and extract text from images programmatically using Java. We can then run a spell checker to correct spelling errors… Read More »Convert Image to Text with Spelling Correction in Java