{"id":37537,"date":"2024-11-01T09:58:22","date_gmt":"2024-11-01T09:58:22","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=37537"},"modified":"2024-11-01T11:02:20","modified_gmt":"2024-11-01T11:02:20","slug":"uwp-development-transformation","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/37537\/","title":{"rendered":"UWP Development, Transformation"},"content":{"rendered":"<p>In this article, we will explain in detail about Transformation, one of the important elements of Windows Universal Platform (UWP) development. The Transformation feature is essential for visually representing various forms of data in UWP. Transformation contributes to enhancing application responsiveness and ultimately provides a richer user experience by allowing users to manipulate UI elements.<\/p>\n<h2>Basics of Transformation<\/h2>\n<p>Transformation generally includes two key components: Position and Scale. These transformations can include Rotation, Skewing, and Translation for UI elements. In UWP, these various transformations can be implemented through the <strong>CompositeTransform<\/strong> class.<\/p>\n<h3>CompositeTransform Class<\/h3>\n<p>The CompositeTransform class allows for the combination of multiple transformations to perform complex transformations. This class provides the following properties:<\/p>\n<ul>\n<li><strong>TranslateX<\/strong>: The distance to move in the horizontal direction<\/li>\n<li><strong>TranslateY<\/strong>: The distance to move in the vertical direction<\/li>\n<li><strong>ScaleX<\/strong>: The scaling factor in the horizontal direction<\/li>\n<li><strong>ScaleY<\/strong>: The scaling factor in the vertical direction<\/li>\n<li><strong>Rotate<\/strong>: The rotation angle<\/li>\n<li><strong>SkewX<\/strong>: The horizontal skew<\/li>\n<li><strong>SkewY<\/strong>: The vertical skew<\/li>\n<\/ul>\n<h2>Implementing Transformation<\/h2>\n<p>Now, let\u2019s implement Transformation in a UWP application. The example code below shows how to rotate, move, and scale an image using basic XAML and C# code.<\/p>\n<h3>XAML Code<\/h3>\n<pre><code>&lt;Page\n    x:Class=\"TransformationExample.MainPage\"\n    xmlns=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\/presentation\"\n    xmlns:x=\"http:\/\/schemas.microsoft.com\/winfx\/2006\/xaml\"\n    xmlns:local=\"using:TransformationExample\"\n    xmlns:d=\"http:\/\/schemas.microsoft.com\/expression\/blend\/2008\"\n    xmlns:mc=\"http:\/\/schemas.openxmlformats.org\/markup-compatibility\/2006\"\n    mc:Ignorable=\"d\"\n    Background=\"{ThemeResource ApplicationPageBackgroundThemeBrush}\"&gt;\n\n    &lt;Grid&gt;\n        &lt;Image x:Name=\"MyImage\" Source=\"Assets\/sample-image.png\" Width=\"200\" Height=\"200\"&gt;\n            &lt;Image.RenderTransform&gt;\n                &lt;CompositeTransform x:Name=\"MyTransform\"\/&gt;\n            &lt;\/Image.RenderTransform&gt;\n        &lt;\/Image&gt;\n\n        &lt;Button Content=\"Transform Image\" Click=\"OnTransformImageClick\" VerticalAlignment=\"Bottom\" \/&gt;\n    &lt;\/Grid&gt;\n&lt;\/Page&gt;\n<\/code><\/pre>\n<h3>C# Code<\/h3>\n<pre><code>using Windows.UI.Xaml.Controls;\nusing Windows.UI.Xaml.Input;\nusing Windows.UI.Xaml.Media;\n\nnamespace TransformationExample\n{\n    public sealed partial class MainPage : Page\n    {\n        public MainPage()\n        {\n            this.InitializeComponent();\n        }\n\n        private void OnTransformImageClick(object sender, RoutedEventArgs e)\n        {\n            \/\/ Process the transformation of the image\n            CompositeTransform transform = MyTransform;\n            transform.TranslateX += 50;  \/\/ Move horizontally\n            transform.TranslateY += 30;  \/\/ Move vertically\n            transform.ScaleX *= 1.2;      \/\/ Scale horizontally\n            transform.ScaleY *= 1.2;      \/\/ Scale vertically\n            transform.Rotate += 45;        \/\/ Rotate\n        }\n    }\n}\n<\/code><\/pre>\n<h2>Application of Transformation<\/h2>\n<p>Transformation can be used in various situations. For instance, it is useful for implementing touch and gesture-based interactions in the application&#8217;s interface. Users can interact with the application by dragging, zooming, or rotating UI elements.<\/p>\n<h3>Transformation through Gestures<\/h3>\n<p>In UWP, gesture-based transformations can be easily implemented through the <strong>Manipulation<\/strong> event. The example below demonstrates how users can drag or zoom in on an image with their fingers.<\/p>\n<h4>XAML Code (Gestures)<\/h4>\n<pre><code>&lt;Image x:Name=\"MyImage\" Source=\"Assets\/sample-image.png\" Width=\"200\" Height=\"200\" \n       ManipulationMode=\"All\" \n       ManipulationDelta=\"OnImageManipulationDelta\"&gt;\n    &lt;Image.RenderTransform&gt;\n        &lt;CompositeTransform x:Name=\"MyTransform\"\/&gt;\n    &lt;\/Image.RenderTransform&gt;\n&lt;\/Image&gt;\n<\/code><\/pre>\n<h4>C# Code (Gestures)<\/h4>\n<pre><code>private void OnImageManipulationDelta(object sender, ManipulationDeltaRoutedEventArgs e)\n{\n    CompositeTransform transform = MyTransform;\n\n    transform.TranslateX += e.Delta.Translation.X;\n    transform.TranslateY += e.Delta.Translation.Y;\n    transform.ScaleX *= e.Delta.Scale.X;\n    transform.ScaleY *= e.Delta.Scale.Y;\n\n    e.Handled = true;\n}\n<\/code><\/pre>\n<h2>Videos and Animations of Transformation<\/h2>\n<p>UWP provides the ability to combine Transformation with animations to create a more engaging user experience. Using UWP&#8217;s <strong>Storyboard<\/strong> class, UI element properties can be animated. The following example code shows how to apply a transformation with a fade-in animation to an image when a button is clicked.<\/p>\n<h3>XAML Code (Animation)<\/h3>\n<pre><code>&lt;Page.Resources&gt;\n    &lt;Storyboard x:Name=\"ImageTransformStoryboard\"&gt;\n        &lt;DoubleAnimation Storyboard.TargetName=\"MyTransform\" Storyboard.TargetProperty=\"TranslateX\" From=\"0\" To=\"150\" Duration=\"0:0:1\"\/&gt;\n        &lt;DoubleAnimation Storyboard.TargetName=\"MyTransform\" Storyboard.TargetProperty=\"Rotate\" From=\"0\" To=\"360\" Duration=\"0:0:1\"\/&gt;\n    &lt;\/Storyboard&gt;\n&lt;\/Page.Resources&gt;\n\n&lt;Button Content=\"Animate Image\" Click=\"OnAnimateImageClick\" VerticalAlignment=\"Bottom\" \/&gt;\n<\/code><\/pre>\n<h3>C# Code (Animation)<\/h3>\n<pre><code>private void OnAnimateImageClick(object sender, RoutedEventArgs e)\n{\n    ImageTransformStoryboard.Begin();\n}\n<\/code><\/pre>\n<h2>Advanced Features of Transformation<\/h2>\n<p>UWP allows for the combination of Transformation and interface design to create more intuitive and manageable UIs. For example, these features enable users to directly adjust the size and position of various UI elements, making the application more user-friendly.<\/p>\n<h3>Drag and Drop Feature<\/h3>\n<p>Drag and Drop is another useful feature for applying Transformation in UWP. This allows users to drag and move UI elements, improving application responsiveness and user experience.<\/p>\n<h4>XAML Code (Drag and Drop)<\/h4>\n<pre><code>&lt;Grid x:Name=\"MainGrid\" AllowDrop=\"True\" Drop=\"OnDrop\" DragOver=\"OnDragOver\"&gt;\n    &lt;Image x:Name=\"DraggableImage\" Source=\"Assets\/sample-image.png\" Width=\"100\" Height=\"100\" \n           PointerPressed=\"OnPointerPressed\" PointerMoved=\"OnPointerMoved\" PointerReleased=\"OnPointerReleased\"\/&gt;\n&lt;\/Grid&gt;\n<\/code><\/pre>\n<h4>C# Code (Drag and Drop)<\/h4>\n<pre><code>private bool isDragging = false;\nprivate Point initialPoint;\n\nprivate void OnPointerPressed(object sender, PointerRoutedEventArgs e)\n{\n    isDragging = true;\n    initialPoint = e.GetCurrentPoint(MainGrid).Position;\n}\n\nprivate void OnPointerMoved(object sender, PointerRoutedEventArgs e)\n{\n    if (isDragging)\n    {\n        var currentPoint = e.GetCurrentPoint(MainGrid).Position;\n        var transform = MyTransform;\n\n        transform.TranslateX += currentPoint.X - initialPoint.X;\n        transform.TranslateY += currentPoint.Y - initialPoint.Y;\n\n        initialPoint = currentPoint;\n    }\n}\n\nprivate void OnPointerReleased(object sender, PointerRoutedEventArgs e)\n{\n    isDragging = false;\n}\n<\/code><\/pre>\n<h2>Conclusion<\/h2>\n<p>Transformation in UWP is a powerful feature that can greatly enhance the user experience. By integrating various visual effects, animations, and gesture-based interfaces, developers can create more attractive and interactive applications. Through the various Transformation techniques and example codes introduced in this article, we hope you can effectively utilize Transformation in UWP development.<\/p>\n<h2>References<\/h2>\n<ul>\n<li><a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/uwp\/design\/motion\/transitions-and-animations\">Microsoft Docs: Transitions and Animations<\/a><\/li>\n<li><a href=\"https:\/\/docs.microsoft.com\/en-us\/windows\/uwp\/design\/style\/transformations\">Microsoft Docs: Transformations<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will explain in detail about Transformation, one of the important elements of Windows Universal Platform (UWP) development. The Transformation feature is essential for visually representing various forms of data in UWP. Transformation contributes to enhancing application responsiveness and ultimately provides a richer user experience by allowing users to manipulate UI elements. &hellip; <a href=\"https:\/\/atmokpo.com\/w\/37537\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;UWP Development, Transformation&#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-37537","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, Transformation - \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\/37537\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UWP Development, Transformation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In this article, we will explain in detail about Transformation, one of the important elements of Windows Universal Platform (UWP) development. The Transformation feature is essential for visually representing various forms of data in UWP. Transformation contributes to enhancing application responsiveness and ultimately provides a richer user experience by allowing users to manipulate UI elements. &hellip; \ub354 \ubcf4\uae30 &quot;UWP Development, Transformation&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/37537\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:58:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:02:20+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\/37537\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37537\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"UWP Development, Transformation\",\"datePublished\":\"2024-11-01T09:58:22+00:00\",\"dateModified\":\"2024-11-01T11:02:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37537\/\"},\"wordCount\":479,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"UWP Programming\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/37537\/\",\"url\":\"https:\/\/atmokpo.com\/w\/37537\/\",\"name\":\"UWP Development, Transformation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:58:22+00:00\",\"dateModified\":\"2024-11-01T11:02:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/37537\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/37537\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/37537\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UWP Development, Transformation\"}]},{\"@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, Transformation - \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\/37537\/","og_locale":"ko_KR","og_type":"article","og_title":"UWP Development, Transformation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In this article, we will explain in detail about Transformation, one of the important elements of Windows Universal Platform (UWP) development. The Transformation feature is essential for visually representing various forms of data in UWP. Transformation contributes to enhancing application responsiveness and ultimately provides a richer user experience by allowing users to manipulate UI elements. &hellip; \ub354 \ubcf4\uae30 \"UWP Development, Transformation\"","og_url":"https:\/\/atmokpo.com\/w\/37537\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:58:22+00:00","article_modified_time":"2024-11-01T11:02:20+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\/37537\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/37537\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"UWP Development, Transformation","datePublished":"2024-11-01T09:58:22+00:00","dateModified":"2024-11-01T11:02:20+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/37537\/"},"wordCount":479,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["UWP Programming"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/37537\/","url":"https:\/\/atmokpo.com\/w\/37537\/","name":"UWP Development, Transformation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:58:22+00:00","dateModified":"2024-11-01T11:02:20+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/37537\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/37537\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/37537\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"UWP Development, Transformation"}]},{"@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\/37537","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=37537"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37537\/revisions"}],"predecessor-version":[{"id":37538,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/37537\/revisions\/37538"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=37537"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=37537"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=37537"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}