BarcodeGenerator::dispatch_render_image

  1. Bitrix24 API (v. 23.675.0)
  2. ui
  3. BarcodeGenerator
  4. dispatch_render_image
  • Модуль: ui
  • Путь к файлу: ~/bitrix/modules/ui/lib/barcode/barcodegenerator.php
  • Класс: BitrixUIBarcodeBarcodeGenerator
  • Вызов: BarcodeGenerator::dispatch_render_image
private function dispatch_render_image(
	$image, $code, $x, $y, $w, $h, $colors, $widths, $options
) {
	if ($code && isset($code['g']) && $code['g']) {
		switch ($code['g']) {
			case 'l':
				$this->linear_render_image(
					$image, $code, $x, $y, $w, $h,
					$colors, $widths, $options
				);
				break;
			case 'm':
				$this->matrix_render_image(
					$image, $code, $x, $y, $w, $h,
					$colors, $widths, $options
				);
				break;
		}
	}
}

Добавить комментарий