<? if (is_array($arResult["DETAIL_PICTURE"])): ?>
<? $PHOTO = $arResult["DETAIL_PICTURE"];
$file3 = CFile::ResizeImageGet($PHOTO, array('width' =>250, 'height' =>300), BX_RESIZE_IMAGE_PROPORTIONAL, true); ?>
<div class="gallery_page_img">
<a href="<?=$PHOTO["SRC"]?>" >
<img src="<?=$file3["src"]?>" width="<?=$file3["width"]?>" height="<?=$file3["height"]?>"
alt="<?=$arResult["NAME"]?>" title="<?=$arResult["NAME"]?>"/>
<?$lupa_h=32;$lupa_w=32;if($file3["height"]<$lupa_h){$lupa_h=$file3["height"];$lupa_w=$file3["height"];}?>
<img src="/images/magnifier.png" width="<?=$lupa_w?>" height="<?=$lupa_h?>" alt="увеличить" class="gallery_page_lupa"/>
</a>
</div>
|