{"id":37445,"date":"2024-11-01T09:57:38","date_gmt":"2024-11-01T09:57:38","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37445"},"modified":"2024-11-01T11:02:41","modified_gmt":"2024-11-01T11:02:41","slug":"uwp-development-brush","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37445\/","title":{"rendered":"UWP Development, Brush"},"content":{"rendered":"<p>To gain a deep understanding of UWP (Universal Windows Platform) development, we will take a closer look at the role of <strong>Brush<\/strong> and how to utilize it. A Brush is an important tool used to draw visual elements in UWP applications. It allows you to define styles and visuals, and easily apply textures, colors, patterns, etc. In this article, we will cover the basic concept of Brush, its various types, usage, and examples.<\/p>\n<h2>1. Basic Concept of Brush<\/h2>\n<p>A Brush is an object used for drawing graphics and is used to paint a solid or multicolored background on UI elements in UWP applications. In UWP, Brushes are defined through XAML and are available in various forms. Brushes have the following basic properties:<\/p>\n<ul>\n<li><strong>Opacity<\/strong>: Defines the opacity of the Brush.<\/li>\n<li><strong>Transform<\/strong>: Defines the transformation of the Brush, enabling scaling, rotation, and translation.<\/li>\n<\/ul>\n<h2>2. Types of Brush<\/h2>\n<p>Let\u2019s take a look at the various types of Brushes provided in UWP. The most common types of Brushes are as follows:<\/p>\n<h3>2.1 SolidColorBrush<\/h3>\n<p>SolidColorBrush is a Brush that is used to fill the screen with a single color. This Brush is primarily used to set the color of the background or shapes.<\/p>\n<pre><code>&lt;Rectangle Width=\"200\" Height=\"100\"&gt;\n    &lt;Rectangle.Fill&gt;\n        &lt;SolidColorBrush Color=\"Blue\"\/&gt;\n    &lt;\/Rectangle.Fill&gt;\n&lt;\/Rectangle&gt;<\/code><\/pre>\n<h3>2.2 LinearGradientBrush<\/h3>\n<p>LinearGradientBrush is a Brush that uses a linear gradient to transition smoothly between two or more colors. This Brush allows for a more sophisticated UI design.<\/p>\n<pre><code>&lt;Rectangle Width=\"200\" Height=\"100\"&gt;\n    &lt;Rectangle.Fill&gt;\n        &lt;LinearGradientBrush&gt;\n            &lt;GradientStop Color=\"Red\" Offset=\"0\"\/&gt;\n            &lt;GradientStop Color=\"Yellow\" Offset=\"1\"\/&gt;\n        &lt;\/LinearGradientBrush&gt;\n    &lt;\/Rectangle.Fill&gt;\n&lt;\/Rectangle&gt;<\/code><\/pre>\n<h3>2.3 RadialGradientBrush<\/h3>\n<p>RadialGradientBrush is a Brush that can apply a radial gradient. This Brush can create an effect where colors change from the center outward.<\/p>\n<pre><code>&lt;Ellipse Width=\"200\" Height=\"200\"&gt;\n    &lt;Ellipse.Fill&gt;\n        &lt;RadialGradientBrush&gt;\n            &lt;GradientStop Color=\"Green\" Offset=\"0\"\/&gt;\n            &lt;GradientStop Color=\"Blue\" Offset=\"1\"\/&gt;\n        &lt;\/RadialGradientBrush&gt;\n    &lt;\/Ellipse.Fill&gt;\n&lt;\/Ellipse&gt;<\/code><\/pre>\n<h3>2.4 ImageBrush<\/h3>\n<p>ImageBrush is used to set an image file as a background. This Brush allows specific areas of the image to fill the UI element.<\/p>\n<pre><code>&lt;Rectangle Width=\"200\" Height=\"100\"&gt;\n    &lt;Rectangle.Fill&gt;\n        &lt;ImageBrush ImageSource=\"Assets\/image.png\"\/&gt;\n    &lt;\/Rectangle.Fill&gt;\n&lt;\/Rectangle&gt;<\/code><\/pre>\n<h3>2.5 VisualBrush<\/h3>\n<p>VisualBrush is useful for using a UI element as the background of another UI element. This Brush clones a specific UI element to use as the background of another element.<\/p>\n<pre><code>&lt;Grid Width=\"200\" Height=\"200\"&gt;\n    &lt;Grid.Background&gt;\n        &lt;VisualBrush&gt;\n            &lt;VisualBrush.Visual&gt;\n                &lt;TextBlock Text=\"Hello UWP!\" FontSize=\"30\" Foreground=\"White\"\/&gt;\n            &lt;\/VisualBrush.Visual&gt;\n        &lt;\/VisualBrush&gt;\n    &lt;\/Grid.Background&gt;\n&lt;\/Grid&gt;<\/code><\/pre>\n<h2>3. Utilizing Brush<\/h2>\n<p>Through the above Brush types, you can enhance the visual elements of your UWP application UI. Here are examples of how to utilize Brush in real UWP applications.<\/p>\n<h3>3.1 Custom UI Design<\/h3>\n<p>Many apps can combine various colors and gradients to add aesthetic fun instead of just using basic colors or images. Let\u2019s create an attractive button by combining SolidColorBrush and LinearGradientBrush.<\/p>\n<pre><code>&lt;Button Width=\"200\" Height=\"100\"&gt;\n    &lt;Button.Background&gt;\n        &lt;LinearGradientBrush&gt;\n            &lt;GradientStop Color=\"Orange\" Offset=\"0\"\/&gt;\n            &lt;GradientStop Color=\"Red\" Offset=\"1\"\/&gt;\n        &lt;\/LinearGradientBrush&gt;\n    &lt;\/Button.Background&gt;\n    Click=\"MyButton_Click\"&gt;Click Me&lt;\/Button&gt;<\/code><\/pre>\n<h3>3.2 Responsive Design<\/h3>\n<p>The Brush in UWP is an important function for creating responsive designs that suit various screen sizes. For example, applying gradients to different areas of a Grid can make them appear differently at various sizes.<\/p>\n<pre><code>&lt;Grid&gt;\n    &lt;Grid.Background&gt;\n        &lt;LinearGradientBrush StartPoint=\"0,0\" EndPoint=\"1,1\"&gt;\n            &lt;GradientStop Color=\"LightSkyBlue\" Offset=\"0\"\/&gt;\n            &lt;GradientStop Color=\"SlateBlue\" Offset=\"1\"\/&gt;\n        &lt;\/LinearGradientBrush&gt;\n    &lt;\/Grid.Background&gt;\n&lt;\/Grid&gt;<\/code><\/pre>\n<h3>3.3 Animation and Brush<\/h3>\n<p>Brush can be used to create visually appealing UIs by applying animation effects. Here\u2019s an example of animating the background color of a button to add an effect when the button is clicked.<\/p>\n<pre><code>&lt;Button Width=\"200\" Height=\"100\" Click=\"AnimateButton\"&gt;\n    &lt;Button.Background&gt;\n        &lt;SolidColorBrush X:Name=\"ButtonBackground\" Color=\"Green\"\/&gt;\n    &lt;\/Button.Background&gt;\n    Click Me&lt;\/Button&gt;<\/code><\/pre>\n<h3>3.4 User Feedback<\/h3>\n<p>Brush can be used to change colors to provide feedback to the user upon button clicks. Here\u2019s an example that changes the color when the button is clicked.<\/p>\n<pre><code>private void AnimateButton(object sender, RoutedEventArgs e)\n{\n    ColorAnimation colorAnimation = new ColorAnimation()\n    {\n        To = Colors.Red,\n        Duration = TimeSpan.FromMilliseconds(500),\n        AutoReverse = true\n    };\n    Storyboard.SetTarget(colorAnimation, ButtonBackground);\n    Storyboard.SetTargetProperty(colorAnimation, \"Color\");\n\n    Storyboard storyboard = new Storyboard();\n    storyboard.Children.Add(colorAnimation);\n    storyboard.Begin();\n}<\/code><\/pre>\n<h2>4. Brush and Resources<\/h2>\n<p>In UWP applications, Brushes can be defined as resources for reuse. This makes maintenance of the application easier and helps to implement a consistent user interface.<\/p>\n<pre><code>&lt;Page.Resources&gt;\n    &lt;SolidColorBrush x:Key=\"MyPrimaryColor\" Color=\"CornflowerBlue\"\/&gt;\n&lt;\/Page.Resources&gt;\n\n&lt;Rectangle Width=\"200\" Height=\"100\"&gt;\n    &lt;Rectangle.Fill&gt;\n        &lt;StaticResource ResourceKey=\"MyPrimaryColor\"\/&gt;\n    &lt;\/Rectangle.Fill&gt;\n&lt;\/Rectangle&gt;<\/code><\/pre>\n<h2>5. Conclusion<\/h2>\n<p>In UWP development, Brush is an essential element that provides visual effects and enhances the user interface. With various types of Brushes, you can easily use any colors, gradients, images, etc. Understand the usage and benefits of Brushes through the examples and explanations above, and apply them in actual UWP application development. You can create more appealing applications with consistent UI along with flexible designs.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To gain a deep understanding of UWP (Universal Windows Platform) development, we will take a closer look at the role of Brush and how to utilize it. A Brush is an important tool used to draw visual elements in UWP applications. It allows you to define styles and visuals, and easily apply textures, colors, patterns, &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37445\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;UWP Development, Brush&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[115],"tags":[],"class_list":["post-37445","post","type-post","status-publish","format-standard","hentry","category-uwp-programming"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>UWP Development, Brush - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/37445\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UWP Development, Brush - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"To gain a deep understanding of UWP (Universal Windows Platform) development, we will take a closer look at the role of Brush and how to utilize it. A Brush is an important tool used to draw visual elements in UWP applications. It allows you to define styles and visuals, and easily apply textures, colors, patterns, &hellip; \ub354 \ubcf4\uae30 &quot;UWP Development, Brush&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37445\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:57:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:02:41+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/37445\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37445\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"UWP Development, Brush\",\"datePublished\":\"2024-11-01T09:57:38+00:00\",\"dateModified\":\"2024-11-01T11:02:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37445\/\"},\"wordCount\":570,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"UWP Programming\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37445\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37445\/\",\"name\":\"UWP Development, Brush - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:57:38+00:00\",\"dateModified\":\"2024-11-01T11:02:41+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37445\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37445\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37445\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UWP Development, Brush\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"UWP Development, Brush - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/37445\/","og_locale":"ko_KR","og_type":"article","og_title":"UWP Development, Brush - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"To gain a deep understanding of UWP (Universal Windows Platform) development, we will take a closer look at the role of Brush and how to utilize it. A Brush is an important tool used to draw visual elements in UWP applications. It allows you to define styles and visuals, and easily apply textures, colors, patterns, &hellip; \ub354 \ubcf4\uae30 \"UWP Development, Brush\"","og_url":"https:\/\/atmokpo.com\/w\/37445\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:57:38+00:00","article_modified_time":"2024-11-01T11:02:41+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/37445\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37445\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"UWP Development, Brush","datePublished":"2024-11-01T09:57:38+00:00","dateModified":"2024-11-01T11:02:41+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37445\/"},"wordCount":570,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["UWP Programming"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37445\/","url":"https:\/\/atmokpo.com\/w\/37445\/","name":"UWP Development, Brush - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:57:38+00:00","dateModified":"2024-11-01T11:02:41+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37445\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37445\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37445\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"UWP Development, Brush"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37445","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=37445"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37445\/revisions"}],"predecessor-version":[{"id":37446,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37445\/revisions\/37446"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37445"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37445"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37445"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}