--- title: slug: Web/SVG/Element/image tags: - NeedsUpdate - SVG translation_of: Web/SVG/Element/image original_slug: Web/SVG/Элемент/image ---
{{SVGRef}}

Элемент <image> позволяет включить растровые изображения в SVG документ.

Usage context

{{svginfo}}

Атрибуты

Глобальные атрибуты

Специфичные атрибуты

DOM Interface

This element implements the SVGImageElement interface.

Пример

Базовый рендеринг PNG изображения в качестве объекта SVG:

SVG

<svg width="200" height="200"
  xmlns="http://www.w3.org/2000/svg">
  <image href="https://mdn.mozillademos.org/files/6457/mdn_logo_only_color.png" height="200" width="200"/>
</svg>

Результат

{{EmbedLiveSample("Пример", 250, 260)}}

Спецификации

Specification Status Comment
{{SpecName('SVG2', 'embedded.html#ImageElement', '<image>')}} {{Spec2('SVG2')}}
{{SpecName('SVG1.1', 'struct.html#ImageElement', '<image>')}} {{Spec2('SVG1.1')}} Initial definition

Browser compatibility

{{Compat("svg.elements.image")}}