Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Сменить фон изображений.


Recommended Posts

Здравствуйте, коллеги.

 

Как известно Опенкарт дорисовывает белые поля для изображений jpeg.

Может кто-нибудь знает можно ли поменять цвет этих белых полей на другой?

Link to comment
Share on other sites


14 минут назад, bsma111 сказал:

можно ли поменять цвет этих белых полей на другой?

если вы про эти белые поля http://joxi.ru/vAW7gN9tB6yqLA, то можно

.thumbnail{
  background-color: #a94442;
}

http://joxi.ru/v29M9kBSRLORW2

Edited by sasha3337774
Link to comment
Share on other sites

Если речь именно про поля, которые формируются в миниатюрах, то надо смотреть в файл system\library\image.php, функцию resize:

Там есть икое:

		if ($this->mime == 'image/png') {
			imagealphablending($this->image, false);
			imagesavealpha($this->image, true);
			$background = imagecolorallocatealpha($this->image, 255, 255, 255, 127);
			imagecolortransparent($this->image, $background);
		} else {
			$background = imagecolorallocate($this->image, 255, 255, 255);
		}

Или эти поля можно вообещё убрать:

 

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

×
×
  • 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.