CodeSnipper Posted April 7, 2017 Share Posted April 7, 2017 Is it any possibility to have category and products images in original aspect ratio, without white spaces around? I want sell photos, that are in several sizes and have two orientations. It is one solution on the forum, that worked in 1.6 but links are dead Attached file: upper row is Prestashop, lower row is what I want. Link to comment Share on other sites More sharing options...
CodeSnipper Posted April 7, 2017 Author Share Posted April 7, 2017 OK, I found file from 1.5 and edited it. Now I have images without white background, all with equal height and different width. All you need, is to put attached file into overrides/classes folder and edit two files: app/cache/dev/class_index.php and app/cache/prod/class_index.php change this: 'ImageManager' => array ( 'path' => '', 'type' => 'class', 'override' => false, ), into this: 'ImageManager' => array ( 'path' => 'override/classes/ImageManager.php', 'type' => 'class', 'override' => false, ), After that, you should clear cache and regenerate images. ImageManager.php Link to comment Share on other sites More sharing options...
joseantgv Posted April 7, 2017 Share Posted April 7, 2017 (edited) OK, I found file from 1.5 and edited it. Now I have images without white background, all with equal height and different width. All you need, is to put attached file into overrides/classes folder and edit two files: app/cache/dev/class_index.php and app/cache/prod/class_index.php change this: 'ImageManager' => array ( 'path' => '', 'type' => 'class', 'override' => false, ), into this: 'ImageManager' => array ( 'path' => 'override/classes/ImageManager.php', 'type' => 'class', 'override' => false, ), After that, you should clear cache and regenerate images. And how do they look at your site? Edited April 7, 2017 by joseantgv (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now