Reputation: 791
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
Reputation: 871
Or you can use CSS as background-image
while background-size: cover; background-position: center center;
Upvotes: 1