blob: e417a4ac65293bf21608898ec6a2a2a1032aaf5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
---
title: <image>
slug: Web/SVG/Элемент/image
tags:
- NeedsUpdate
- SVG
translation_of: Web/SVG/Element/image
---
<div>{{SVGRef}}</div>
<p>Элемент <image> позволяет включить растровые изображения в SVG документ.</p>
<h2 id="Usage_context">Usage context</h2>
<p>{{svginfo}}</p>
<h2 id="Атрибуты">Атрибуты</h2>
<h3 id="Глобальные_атрибуты">Глобальные атрибуты</h3>
<ul>
<li><a href="/en-US/docs/Web/SVG/Attribute#ConditionalProccessing">Conditional processing attributes</a> »</li>
<li><a href="/en-US/docs/Web/SVG/Attribute#Core">Core attributes</a> »</li>
<li><a href="/en-US/docs/Web/SVG/Attribute#GraphicalEvent">Graphical event attributes</a> »</li>
<li><a href="/en-US/docs/Web/SVG/Attribute#XLink">Xlink attributes</a> »</li>
<li><a href="/en-US/docs/Web/SVG/Attribute#Presentation">Presentation attributes</a> »</li>
<li>{{SVGAttr("class")}}</li>
<li>{{SVGAttr("style")}}</li>
<li>{{SVGAttr("externalResourcesRequired")}}</li>
<li>{{SVGAttr("transform")}}</li>
</ul>
<h3 id="Специфичные_атрибуты">Специфичные атрибуты</h3>
<ul>
<li>{{SVGAttr("x")}}</li>
<li>{{SVGAttr("y")}}</li>
<li>{{SVGAttr("width")}}</li>
<li>{{SVGAttr("height")}}</li>
<li>{{SVGAttr("xlink:href")}}</li>
<li>{{SVGAttr("preserveAspectRatio")}}</li>
</ul>
<h2 id="DOM_Interface">DOM Interface</h2>
<p>This element implements the <code><a href="/en-US/docs/Web/API/SVGImageElement">SVGImageElement</a></code> interface.</p>
<h2 id="Пример">Пример</h2>
<p>Базовый рендеринг PNG изображения в качестве объекта SVG:</p>
<h3 id="SVG">SVG</h3>
<pre class="brush: html notranslate"><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>
</pre>
<h3 id="Результат">Результат</h3>
<p>{{EmbedLiveSample("Пример", 250, 260)}}</p>
<h2 id="Спецификации">Спецификации</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('SVG2', 'embedded.html#ImageElement', '<image>')}}</td>
<td>{{Spec2('SVG2')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('SVG1.1', 'struct.html#ImageElement', '<image>')}}</td>
<td>{{Spec2('SVG1.1')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<div class="hidden">
<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
</div>
<p>{{Compat("svg.elements.image")}}</p>
|