Image thumbnail size

Permalink
When an image is uploaded to the C5 database and thumbnail version is automatically created in a /thumbnails directory

http://www.site-name.com/files/thumbnails/5712/4345/5790/file-name....

How do I control the size that this thumbnail is created at? Mine are currently 65x51 pixels?

Thanks.

stoneyard
 
defunct replied on at Permalink Reply
defunct
Can't be 100% certain but try placing the following in config/site.php

define('AL_THUMBNAIL_WIDTH', '60');
define('AL_THUMBNAIL_HEIGHT', '60');


And adjust the values to what you're looking for.
marxion replied on at Permalink Reply
marxion
I'm thinking these values may need to be adjusted in the controller and not the site config file...??
nickodalton replied on at Permalink Reply
nickodalton
For those looking for similar threads this may help:
http://c5cookbook.com/recipes/generate_thumbnail_images...