Paramasivan
Paramasivan

Reputation: 791

Resize image for fixed height and fixed width with jquery

There are resizing answers at Jquery resizing image

In the code, there is:

var maxWidth = 100; // Max width for the image
var maxHeight = 100; // Max height for the image

Is it possible to resize to fixed size of 100px x 100px?

Upvotes: 0

Views: 1021

Answers (1)

Danny
Danny

Reputation: 871

Or you can use CSS as background-image while background-size: cover; background-position: center center;

Upvotes: 1

Related Questions