Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Ребята, есть у кого+то модуль для opencart 2 или замена класса Image, чтобы картинки были без белого фона в кеше.


Recommended Posts

Ребята, есть у кого+то модуль для opencart2 или замена класса Image, чтобы картинки были без белого фона в кеше.

 

скрин белый фон.png

Edited by iv8383
Link to comment
Share on other sites


Задайте в настройках правильные размеры изображений, пропорциональные вашим оригинальным фото

Edited by thentru
Link to comment
Share on other sites


58 minutes ago, theRGD said:

это не белый class, это картинка такая

я в курсе что это картинка такая именно поэтому и написал о классе Image 

Link to comment
Share on other sites


26 minutes ago, lexxkrt said:

как альтернатива, брать верхний левый пиксель (цвет его) и заполнять новую картинку базовым цветом, цветом пикселя.

вариант колхоза?

Link to comment
Share on other sites


50 minutes ago, thentru said:

Задайте в настройках правильные размеры изображений, пропорциональные вашим оригинальным фото

размеры в админке не влияют на результат показа изображения

Link to comment
Share on other sites


решил, для тех кто столкнется с подобной задачей:

 

в system/library/image.php

 в методе resize вместо строки: 

$this->image = imagecreatetruecolor($width,$height);

вставляем 

$this->image = imagecreatetruecolor($width=$new_width,$height=$new_height);

$new_height это высота вложенной картинки в основную канву которая этой функцией в resize и создается, $new_width это соответствующая ширина;

и вместо строки

imagecopyresampled($this->image, $image_old, $xpos, $ypos, 0, 0, $new_width, $new_height, $this->width, $this->height); //(в том же методе resize)

вставляем это:

$ypos=0;

imagecopyresampled($this->image, $image_old, $xpos, $ypos, $xpos, $ypos, $new_width, $new_height, $this->width, $this->height);

 

 

Edited by iv8383
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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.