Follow Me:

Tuesday, 21 July 2015

CwebP Unsupported Color Conversion Request:     When i am creating WebP images, that time triggering the error as "cwebp unsupported color conversion request, Error Could not be process file".  Error:      $imageName  = "ilikekaraikudi.jpg";     $webpimgName  = "ilikekaraikudi.webp";      cwebp -q 0 ".$imageName." -o ".$webpimgName.    Unsupported color...

Thursday, 16 July 2015

WebP:     WebP is an image file type that was created in 2010 and is created by Google. This image format provides lossless and lossy compression to images on the server. Big social media websites are using WebP image process are Google, Facebook and EBay.    WebP images natively supporting to the following browsers are Chrome, Opera, Opera Mini, Android Browser and Chrome for Android browsers only. It is not supported...

Monday, 6 July 2015

Abstract class in PHP:     Abstract Class  contains only declare the method's signature, they can't define the implementation.     Abstraction class are defined using the keyword abstract .     Abstract Class is not possible to implement multiple inheritance.     Latest version of PHP 5 has introduces abstract classes and methods.     Classes defined as abstract , we...