Our Latest Blogging

Maintain image aspect ratio while resizing using

Mar 14, 2015

          What is image aspect ratio? The aspect ratio of an image describes the proportional relationship between its width and its height. It is commonly expressed as two numbers separated by a colon, as in 16:9.  For an x:y aspect ratio, no matter how big or small the image is, if the width is divided into x units of equal length and the height is measured using this same length unit, the height will be measured to be y units. Usually we need to resize the images for different pages in our website. But in most of the time, while resizing, the image lost its quality. Because of the image has an incorrect aspect ratio and appears stretched. Now we are going to see the simple solution for maintaining the image aspect ratio while resizing. Below is the java script function to calculate image aspect ratio. function GetImageRatio(SourceWidth, SourceHeight, MaxWidth, MaxHeight) { var ratio = Math.min(MaxWidth / SourceWidth, MaxHeight / SourceHeight); return {ratio:ratio, width: SourceWidth*ratio, height:..

Read more

How to install wordpress Plugins in easy

Mar 13, 2015

Hi all hope you all are well and today what we going to see is how to install a WordPress Plugins. There a three easy..

Read more

How To Add Users In WordPress

Mar 12, 2015

Hi all now we are going to see how to add a new in WordPress by step by step process given below 1. Login to..

Read more

Google’s Very Next Algorithm: Mobile Friendliness Ranking

Mar 06, 2015

After a long gap, Google will be going to launch one another new algorithm i.e. Mobile-Friendliness Ranking Signal from April 21st 2015. Hope this algorithm..

Read more

How TO Upload A Video To Youtube

Feb 24, 2015

Hi all now we are going to see how to upload a video to YouTube for this you should have an YouTube account you can..

Read more

How To Block Multiple IP Addresses Using

Feb 20, 2015

Sometimes we need to ban particular visitors to access our website. For this, the most common reason is spammers and scrapers that perform malicious activity..

Read more

Some Useful Mac OS X Terminal Commands

Feb 19, 2015

Here are some useful Mac OS X Terminal commands that bring you more change and comfort in your working with Mac. 1. Customize OS X..

Read more

Force quit OS X menu bar apps

Feb 19, 2015

To force quit a Mac app, you can call up the Force Quit Applications menu from the Apple menu button in the upper-left corner or..

Read more

How To Setup Cron Job In Windows

Feb 19, 2015

You have to follow below some very simple steps to run cron file in windows system. 1. The First thing you should do is to..

Read more

Facebook launches Call-to-Action button for Business Pages

Feb 19, 2015

Want to increase leads towards your business? The big social network “Facebook” introduces call to action button to the business pages that you’re creating redirect..

Read more