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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
---
title: <feMorphology>
slug: Web/SVG/Element/feMorphology
tags:
- Element
- SVG
- SVG Filter
translation_of: Web/SVG/Element/feMorphology
---
<div>{{SVGRef}}</div>
<p>La primitive de filtre <a href="/fr/docs/Web/SVG">SVG</a> <strong><code><feMorphology></code></strong> est utilisée pour éroder ou dilater l'image en entrée. Cela permet d'appliquer des effets de mise en gras ou d'amincissement.</p>
<h2 id="Contexte_d'utilisation">Contexte d'utilisation</h2>
<p>{{svginfo}}</p>
<h2 id="Attributs">Attributs</h2>
<h3 id="Attributs_globaux">Attributs globaux</h3>
<ul>
<li><a href="/fr/docs/Web/SVG/Attribute#Attributs_de_base">Attributs de base</a></li>
<li><a href="/fr/docs/Web/SVG/Attribute#Attributs_de_présentation">Attributs de présentation</a></li>
<li><a href="/fr/docs/Web/SVG/Attribute#Attributs_de_primitives_de_filtre">Attributs de primitive de filtre</a></li>
<li>{{SVGAttr("class")}}</li>
<li>{{SVGAttr("style")}}</li>
</ul>
<h3 id="Attributs_spécifiques">Attributs spécifiques</h3>
<ul>
<li>{{SVGAttr("in")}}</li>
<li>{{SVGAttr("operator")}}</li>
<li>{{SVGAttr("radius")}}</li>
</ul>
<h2 id="Interface_DOM">Interface DOM</h2>
<p>Cet élément implémente l'interface {{domxref("SVGFEMorphologyElement")}}.</p>
<h2 id="Exemples">Exemples</h2>
<h3 id="Sur_du_contenu_SVG">Sur du contenu SVG</h3>
<h4 id="SVG">SVG</h4>
<pre class="brush: html; highlight[3,6]"><svg xmlns="http://www.w3.org/2000/svg" width="300" height="180">
<filter id="erode">
<feMorphology operator="erode" radius="1"/>
</filter>
<filter id="dilate">
<feMorphology operator="dilate" radius="2"/>
</filter>
<text y="1em">Texte normal</text>
<text id="thin" y="2em">Texte mince</text>
<text id="thick" y="3em">Text gras</text>
</svg>
</pre>
<h4 id="CSS">CSS</h4>
<pre class="brush: css; highlight[7,11]">text {
font-family: Arial, Helvetica, sans-serif;
font-size: 3em;
}
#thin {
filter: url(#erode);
}
#thick {
filter: url(#dilate);
}</pre>
<p>{{EmbedLiveSample("Sur_du_contenu_SVG", 340, 180)}}</p>
<h3 id="Sur_du_contenu_HTML">Sur du contenu HTML</h3>
<h4 id="SVG_2">SVG</h4>
<pre class="brush: html; highlight[3,6]"><svg xmlns="http://www.w3.org/2000/svg" width="0" height="0">
<filter id="erode">
<feMorphology operator="erode" radius="1"/>
</filter>
<filter id="dilate">
<feMorphology operator="dilate" radius="2"/>
</filter>
</svg>
<p>Texte normal</p>
<p id="thin">Texte mince</p>
<p id="thick">Text gras</p></pre>
<h4 id="CSS_2">CSS</h4>
<pre class="brush: css; highlight[8,12]">p {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 3em;
}
#thin {
filter: url(#erode);
}
#thick {
filter: url(#dilate);
}</pre>
<p>{{EmbedLiveSample("Sur_du_contenu_HTML", 340, 180)}}</p>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("Filters 1.0", "#feMorphologyElement", "<feMorphology>")}}</td>
<td>{{Spec2("Filters 1.0")}}</td>
<td>Aucun changement</td>
</tr>
<tr>
<td>{{SpecName("SVG1.1", "filters.html#feMorphologyElement", "<feMorphology>")}}</td>
<td>{{Spec2("SVG1.1")}}</td>
<td>Définition initiale</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p class="hidden">Le tableau de compatibilité de cette page a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à envoyer une <em>pull request</em> sur <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a>.</p>
<p>{{Compat("svg.elements.feMorphology")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li>{{SVGElement("filter")}}</li>
<li>{{SVGElement("animate")}}</li>
<li>{{SVGElement("set")}}</li>
<li>{{SVGElement("feBlend")}}</li>
<li>{{SVGElement("feColorMatrix")}}</li>
<li>{{SVGElement("feComponentTransfer")}}</li>
<li>{{SVGElement("feComposite")}}</li>
<li>{{SVGElement("feConvolveMatrix")}}</li>
<li>{{SVGElement("feDiffuseLighting")}}</li>
<li>{{SVGElement("feDisplacementMap")}}</li>
<li>{{SVGElement("feFlood")}}</li>
<li>{{SVGElement("feGaussianBlur")}}</li>
<li>{{SVGElement("feImage")}}</li>
<li>{{SVGElement("feMerge")}}</li>
<li>{{SVGElement("feOffset")}}</li>
<li>{{SVGElement("feSpecularLighting")}}</li>
<li>{{SVGElement("feTile")}}</li>
<li>{{SVGElement("feTurbulence")}}</li>
<li><a href="/fr/docs/Web/SVG/Tutoriel/filtres">Tutoriel SVG: Filtres</a></li>
</ul>
|