Jump to content

Image size - preserve original aspect ratio


CodeSnipper

Recommended Posts

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.

post-1330362-0-36977400-1491565788_thumb.jpg

Link to comment
Share on other sites

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

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 by joseantgv (see edit history)
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...