Snippets

Alexey ilyaskin bitrix news.list resize images

Created by Alexey ilyaskin
<?php
if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED!==true)die();
$thumbWidth = 300;
$thumbHeight = 200;

foreach($arResult["ITEMS"] as $key => $arItem) {
	if (is_array($arItem["PREVIEW_PICTURE"])) {
		$arFileTmp = CFile::ResizeImageGet(
			$arItem["PREVIEW_PICTURE"],
			array("width" => $thumbWidth, "height" => $thumbHeight),
			BX_RESIZE_IMAGE_EXACT,    // или BX_RESIZE_IMAGE_PROPORTIONAL
			true
		);

		$arResult["ITEMS"][$key]["THUMB"] = array(
			"SRC" => $arFileTmp["src"],
			'WIDTH' => $arFileTmp["width"],
			'HEIGHT' => $arFileTmp["height"],
		);
	}
}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.