How to use Tesseract OCR with Java? | Extract text from image

In this tutorial session, we are going to learn, how to use Tesseract OCR in java in eclipse?   Step 1: first, download the Tesseract OCR package and unzip/save it on your filesystem.  download link:  https://sourceforge.net/projects/tess4j/    Step 2: We will use maven dependency for Tesseract.  <dependency>     <groupId> org.bytedeco </groupId>     <artifactId> tesseract </artifactId>  … Read more

Creating a Simple Java Web application(Servlet/JSP) in Visual Studio Code to Deploy in Jetty Server

Hello Friends, I have created this tutorial for absolute beginners working with Java in VS Code. In this video tutorial session, we will learn to create a simple Java web application (servlet/JSP-based) by using the Maven extension in Visual Studio Code. I tried to explain the whole process of creating a web project in VS … Read more

Transfer data from old android phone to new Samsung mobile via Smart Switch | Quick & Easy data move

In this tutorial, we will learn, how to transfer all data (contacts, call details, settings, messages, images, photos, google accounts) to your new Samsung mobile with the help of the Smart Switch mobile app developed by Samsung.    We can transfer via Wi-Fi or by connecting phones with USB cables. I found wireless connection and … Read more

fonts.conf file content

 <?xml version=”1.0″?> <!DOCTYPE fontconfig SYSTEM “fonts.dtd”> <!– /etc/fonts/fonts.conf file to configure system font access –> <fontconfig> <!– DO NOT EDIT THIS FILE. IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED. LOCAL CHANGES BELONG IN ‘local.conf’. The intent of this standard configuration file is to be adequate for most environments. If you have a reasonably normal … Read more

Adding Animation in JavaFX Pie Chart

In this tutorial session, we are going to add animation with JavaFX Pie Chart. We will perform an animation on Pie Chart Slices when we click on any one of these. Let’s Begin: Step 1: Please watch Part 1 and Part 2 of this tutorial in which we first learn to create a Pie Chart … Read more