Compare Two Images for Similarity Using PHP | PHP Image Comparison

By | January 16, 2017

How to Compare two images for similarity using PHP very well known question and many times we have to face this issue of PHP Image Comparison or Compare Image Similarity using PHP. Many people ask why we need to find the image similarity? before answering this question lets say you want to find your lost… Read More »

Cordova Project Creation and Building Commands Using Node JS CLI

By | December 16, 2016

Cordova helps us to make the mobile development more user friendly and easy. Due to the demand of mobile applications we saw that most of the companies are having their own Mobile Application weather its useful or not. Cordova helps us to create Mobile Application development using Javascript/HTML. Cordova  allows you to easily write one… Read More »

Remove PHP Extension from URL Using Htaccess URL Rewrite Rule

By | June 11, 2016

Hello friends many times we need to remove the extensions from our URL for better SEO. So in this tutorial we will tell you how you can Remove PHP Extension from URL using  .htaccess file. Use the below code in your .htaccess file only RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^(.*)$ $1.php… Read More »

Get Image SRC Value Using Jquery

By | May 29, 2016

Many times we need our image URL for performing some actions like zooming, changing or providing effects. In this tutorial we will get the Image SRC value using Jquery. In this tutorial we will divide the code into 2 parts. “HTML and JQUERY”. Index.html <img src=”logo/logo.png” id=”logo”> <input type=”button” id=”bt” name=”bt” value=”Click Me”> <p id=”name”… Read More »

Add Watermark Image in PHP | Create Watermark in PHP

By | February 19, 2016

Add watermark image in PHP its our new tutorial. You can add your watermark image to your image. Now you dont need to open Photoshop and do this. Here is the very simple and short code for adding your image. addWaterMark(“Your path to image”); function addWaterMark($filename){ $logoImage = imagecreatefrompng(‘logo.png’); $logoWidth=imagesx($logoImage); $logoHeight=imagesy($logoImage); $im = imagecreatefromjpeg($filename); $sx… Read More »