mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:06:30 +00:00
0b38d9b24c
add image processing
54 lines
2.3 KiB
C#
54 lines
2.3 KiB
C#
using Azaion.Common.DTO;
|
|
|
|
namespace Azaion.Annotator;
|
|
|
|
public class AnnotatorModule : IAzaionModule
|
|
{
|
|
public string Name => "Анотатор";
|
|
|
|
public string SvgIcon =>
|
|
@"<?xml version=""1.0"" encoding=""utf-8""?>
|
|
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
<svg version=""1.1"" id=""Layer_1"" xmlns=""http://www.w3.org/2000/svg"" xmlns:xlink=""http://www.w3.org/1999/xlink"" x=""0px"" y=""0px""
|
|
viewBox=""0 0 800 800"" style=""enable-background:new 0 0 800 800;"" xml:space=""preserve"">
|
|
<style type=""text/css"">
|
|
.st0{fill:#FFFFFF;}
|
|
.st1{opacity:0.75;fill:#006932;stroke:#000000;stroke-width:20;stroke-miterlimit:10;}
|
|
.st2{opacity:0.75;fill:#6C0A0B;stroke:#000000;stroke-width:20;stroke-miterlimit:10;}
|
|
.st3{fill:#FFFFFF;stroke:#434444;stroke-width:8;stroke-miterlimit:10;}
|
|
</style>
|
|
<g id=""SVGRepo_bgCarrier"">
|
|
</g>
|
|
<g id=""SVGRepo_tracerCarrier"">
|
|
</g>
|
|
<g id=""SVGRepo_iconCarrier"">
|
|
<g transform=""translate(1)"">
|
|
<g>
|
|
<polygon class=""st0"" points=""465.7,93.3 545.7,93.3 545.7,13.3 465.7,13.3""/>
|
|
</g>
|
|
</g>
|
|
</g>
|
|
<rect x=""43.3"" y=""53.3"" class=""st1"" width=""609.7"" height=""301""/>
|
|
<rect x=""443.2"" y=""400"" class=""st2"" width=""285.8"" height=""363""/>
|
|
<g>
|
|
<rect x=""19"" y=""325"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""17.5"" y=""166"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""17.5"" y=""27"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""325.5"" y=""329"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""624.5"" y=""325"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""626.5"" y=""168"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""626.5"" y=""27"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""323.5"" y=""27"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""419.8"" y=""377.3"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""698.7"" y=""378.3"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""418.5"" y=""733.2"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""698.7"" y=""736.5"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""415.8"" y=""555.7"" class=""st3"" width=""53"" height=""53""/>
|
|
<rect x=""701.2"" y=""551.7"" class=""st3"" width=""53"" height=""53""/>
|
|
</g>
|
|
</svg>";
|
|
|
|
public Type MainWindowType => typeof(Annotator);
|
|
|
|
public WindowEnum WindowEnum => WindowEnum.Annotator;
|
|
} |