{"id":27967,"date":"2022-05-05T08:34:54","date_gmt":"2022-05-05T08:34:54","guid":{"rendered":"http:\/\/blur-faces-in-images-in-next.js."},"modified":"2022-05-05T08:34:54","modified_gmt":"2022-05-05T08:34:54","slug":"blur-faces-in-images-in-next-js","status":"publish","type":"post","link":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/","title":{"rendered":"Blur Faces in Images in Next.js"},"content":{"rendered":"<div class=\"wp-block-cloudinary-markdown \"><p>Blurring images helps hide anything we don\u2019t want people to see, such as backgrounds, faces, house numbers, or anything we want to obscure from photos.<\/p>\n<p>This post discusses how to blur faces in an image using Cloudinary and Next.js.<\/p>\n<p><a href=\"https:\/\/cloudinary.com\/\">Cloudinary<\/a> offers an end-to-end solution for all our image and video needs, including upload, storage, administration, transformation, and optimized delivery.<\/p>\n<p><a href=\"https:\/\/nextjs.org\/\">Next.js<\/a> is a <a href=\"https:\/\/reactjs.org\/\">React-based<\/a> framework for building modern web applications. It has impressive features such as server-side rendering, incremental static regeneration, and more. These features make it very easy to build scalable, production-ready applications.<\/p>\n<h2>Sandbox<\/h2>\n<p>We completed this project in <a href=\"https:\/\/codesandbox.io\/s\/trusting-frog-7fuqfi\">CodeSandbox<\/a>. Fork and run it to quickly get started.<\/p>\n<\/div>\n  \n  <div class=\"wp-block-cloudinary-code-sandbox \">\n    <iframe\n      src=\"https:\/\/codesandbox.io\/embed\/trusting-frog-7fuqfi?theme=dark&amp;codemirror=1&amp;highlights=&amp;editorsize=50&amp;fontsize=14&amp;expanddevtools=0&amp;hidedevtools=0&amp;eslint=0&amp;forcerefresh=0&amp;hidenavigation=0&amp;initialpath=%2F&amp;module=&amp;moduleview=0&amp;previewwindow=&amp;view=&amp;runonclick=1\"\n      height=\"500\"\n      style=\"width: 100%;\"\n      title=\"Blurring faces in images with Next.js\"\n      loading=\"lazy\"\n      allow=\"accelerometer; ambient-light-sensor; camera; encrypted-media; geolocation; gyroscope; hid; microphone; midi; payment; usb; vr; xr-spatial-tracking\"\n      sandbox=\"allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts\"\n    ><\/iframe>\n  <\/div>\n\n  <div class=\"wp-block-cloudinary-markdown \"><h3>Github Repository<\/h3>\n<p><a href=\"https:\/\/github.com\/Kizmelvin\/blur-faces-with-nextjs\">https:\/\/github.com\/Kizmelvin\/blur-faces-with-nextjs<\/a><\/p>\n<h2>Prerequisites<\/h2>\n<p>The following are requirements to complete this project:<\/p>\n<ul>\n<li>A fair knowledge of Javascript and React.js.<\/li>\n<li>A Cloudinary account. <a href=\"https:\/\/cloudinary.com\/users\/register\/free\">Sign up<\/a> \u2014 it\u2019s free!<\/li>\n<li>Knowledge of Next.js is useful but not required.<\/li>\n<\/ul>\n<h2>Setting up a Next.js application<\/h2>\n<p>First, we\u2019ll bootstrap a Next.js application with the following command in the terminal:<\/p>\n<pre><code>npx create-next-app blurred-faces\n<\/code><\/pre>\n<p>The command above creates a Next.js application in a folder called \u201cblurred-faces.\u201d<\/p>\n<p>Next, we\u2019ll navigate into the project directory, install the <a href=\"https:\/\/www.npmjs.com\/package\/cloudinary-react\">cloudinary-react<\/a> package, and start the application with the following commands:<\/p>\n<pre><code>cd blurred-faces #navigates to project directory.\nnpm install cloudinary-react #installs the cloudinary-react library\nnpm run dev #start the application.\n<\/code><\/pre>\n<p>We\u2019ll also install <a href=\"https:\/\/github.com\/vercel\/styled-jsx\">styled-jsx<\/a> with the command below to handle the project styling:<\/p>\n<pre><code>npm install styled-jsx\n<\/code><\/pre>\n<p>Next.js will start a development environment accessible by default at <a href=\"http:\/\/localhost:3000\">http:\/\/localhost:3000<\/a>.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/res.cloudinary.com\/mediadevs\/image\/upload\/c_limit,w_2000\/f_auto\/q_auto\/v1651276824\/e-622f7669a2248400693fd10e\/qpqirica9wh2ts3s2y9e.png\" alt=\"next\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"1249\" height=\"699\"\/><\/p>\n<h2>Uploading images to Cloudinary<\/h2>\n<p>Now, let\u2019s log in to Cloudinary and navigate to \u201cMedia Library.\u201d Download and the following unsplash images and upload them to this Cloudinary directory:<\/p>\n<ul>\n<li>\n<p><a href=\"https:\/\/unsplash.com\/photos\/kRWY72TKB0Y\">https:\/\/unsplash.com\/photos\/kRWY72TKB0Y<\/a><\/p>\n<\/li>\n<li>\n<p><a href=\"https:\/\/unsplash.com\/photos\/Q_Sei-TqSlc\">https:\/\/unsplash.com\/photos\/Q_Sei-TqSlc<\/a><\/p>\n<\/li>\n<li>\n<p><a href=\"https:\/\/unsplash.com\/photos\/fznQW-kn5VU\">https:\/\/unsplash.com\/photos\/fznQW-kn5VU<\/a><\/p>\n<\/li>\n<\/ul>\n<p><img decoding=\"async\" src=\"https:\/\/res.cloudinary.com\/mediadevs\/image\/upload\/c_limit,w_2000\/f_auto\/q_auto\/v1651277048\/e-622f7669a2248400693fd10e\/xrr908wydvtqmqogvdka.png\" alt=\"cloud-upload\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"1357\" height=\"701\"\/><\/p>\n<p>Note the image public IDs or write them down somewhere; we\u2019ll use them later to access our images.<\/p>\n<h2>Building the Blur Faces Image component<\/h2>\n<p>Let\u2019s create a Components folder in the root directory and create a file <code>Images.js<\/code> inside it using the following snippet:<\/p>\n<p><a href=\"https:\/\/gist.github.com\/Kizmelvin\/3f42172f218f1f80ee63c7bca11f0f89\">https:\/\/gist.github.com\/Kizmelvin\/3f42172f218f1f80ee63c7bca11f0f89<\/a><\/p>\n<p>In the snippet above, we:<\/p>\n<ul>\n<li>Imported <code>CloudinaryContext<\/code> and added our cloud name.<\/li>\n<li>Passed \u201cpublicIds\u201d of the images we uploaded to cloudinary to the <code>Image<\/code> tag to display them.<\/li>\n<li>Used <code>Transformation<\/code> to add different <code>pixelate_faces<\/code> effects to the pictures to blur the faces.<\/li>\n<\/ul>\n<p>Next, we\u2019ll import the <code>Image.js<\/code> component and render it inside the <code>index.js<\/code> file:<\/p>\n<pre><code>\/\/pages\/index.js\nimport Images from &quot;..\/Components\/Images&quot;;\nexport default function IndexPage() {\n  return (\n    &lt;div&gt;\n      &lt;Images \/&gt;\n    &lt;\/div&gt;\n  );\n}\n<\/code><\/pre>\n<p>Now, we should see our images with different face blur effects in the browser.<\/p>\n<p>The first image has the default blur effect, <code>pixelate_faces<\/code>.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/res.cloudinary.com\/mediadevs\/image\/upload\/c_limit,w_2000\/f_auto\/q_auto\/v1651277153\/e-622f7669a2248400693fd10e\/ufmn4ajlp6jaeiwnm6jt.png\" alt=\"default-blur\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"1249\" height=\"708\"\/><\/p>\n<p>The second image has a lighter blur effect, <code>pixelate_faces:10<\/code>.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/res.cloudinary.com\/mediadevs\/image\/upload\/c_limit,w_2000\/f_auto\/q_auto\/v1651277416\/e-622f7669a2248400693fd10e\/ec9ooptjk9c22l74m2uo.png\" alt=\"light-blur\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"1249\" height=\"616\"\/><\/p>\n<p>The third one has a very thick blur effect, <code>pixelate_faces:40<\/code>.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/res.cloudinary.com\/mediadevs\/image\/upload\/c_limit,w_2000\/f_auto\/q_auto\/v1651277451\/e-622f7669a2248400693fd10e\/set1d7aszj9lzqctxiao.png\" alt=\"thick-blur\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"1249\" height=\"699\"\/><\/p>\n<h2>Conclusion<\/h2>\n<p>This post discussed blurring faces in images using Cloudinary and Next.js.<\/p>\n<h2>Resources<\/h2>\n<p><a href=\"https:\/\/cloudinary.com\/documentation\/face_detection_based_transformations#effects_with_face_detection\">Effects with face detection<\/a> might also be a helpful resource.<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":41,"featured_media":27968,"comment_status":"","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_cloudinary_featured_overwrite":false,"footnotes":""},"categories":[1],"tags":[134,370,212,371],"class_list":["post-27967","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-guest-post","tag-image","tag-next-js","tag-under-review"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.6 (Yoast SEO v26.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Blur Faces in Images in Next.js<\/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:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Blur Faces in Images in Next.js\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudinary Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-05-05T08:34:54+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"NewsArticle\",\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"Blur Faces in Images in Next.js\",\"datePublished\":\"2022-05-05T08:34:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/\"},\"wordCount\":7,\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681938476\/Web_Assets\/blog\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5.jpg?_i=AA\",\"keywords\":[\"Guest Post\",\"Image\",\"Next.js\",\"Under Review\"],\"inLanguage\":\"en-US\",\"copyrightYear\":\"2022\",\"copyrightHolder\":{\"@id\":\"https:\/\/cloudinary.com\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/\",\"url\":\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/\",\"name\":\"Blur Faces in Images in Next.js\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681938476\/Web_Assets\/blog\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5.jpg?_i=AA\",\"datePublished\":\"2022-05-05T08:34:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#primaryimage\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681938476\/Web_Assets\/blog\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5.jpg?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681938476\/Web_Assets\/blog\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5.jpg?_i=AA\",\"width\":1920,\"height\":1280},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudinary.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blur Faces in Images in Next.js\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"name\":\"Cloudinary Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudinary.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\",\"name\":\"Cloudinary Blog\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"width\":312,\"height\":60,\"caption\":\"Cloudinary Blog\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Blur Faces in Images in Next.js","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:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/","og_locale":"en_US","og_type":"article","og_title":"Blur Faces in Images in Next.js","og_url":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/","og_site_name":"Cloudinary Blog","article_published_time":"2022-05-05T08:34:54+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#article","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/"},"author":{"name":"","@id":""},"headline":"Blur Faces in Images in Next.js","datePublished":"2022-05-05T08:34:54+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/"},"wordCount":7,"publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681938476\/Web_Assets\/blog\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5.jpg?_i=AA","keywords":["Guest Post","Image","Next.js","Under Review"],"inLanguage":"en-US","copyrightYear":"2022","copyrightHolder":{"@id":"https:\/\/cloudinary.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/","url":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/","name":"Blur Faces in Images in Next.js","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#primaryimage"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681938476\/Web_Assets\/blog\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5.jpg?_i=AA","datePublished":"2022-05-05T08:34:54+00:00","breadcrumb":{"@id":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#primaryimage","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681938476\/Web_Assets\/blog\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5.jpg?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681938476\/Web_Assets\/blog\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5.jpg?_i=AA","width":1920,"height":1280},{"@type":"BreadcrumbList","@id":"https:\/\/cloudinary.com\/blog\/guest_post\/blur-faces-in-images-in-next-js\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudinary.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Blur Faces in Images in Next.js"}]},{"@type":"WebSite","@id":"https:\/\/cloudinary.com\/blog\/#website","url":"https:\/\/cloudinary.com\/blog\/","name":"Cloudinary Blog","description":"","publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudinary.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudinary.com\/blog\/#organization","name":"Cloudinary Blog","url":"https:\/\/cloudinary.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","width":312,"height":60,"caption":"Cloudinary Blog"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":""}]}},"jetpack_featured_media_url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681938476\/Web_Assets\/blog\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5\/3cb7d6159ad6872026e66cc93eccd7b4a0710eb3-1920x1280-1_27968416b5.jpg?_i=AA","_links":{"self":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/27967","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/users\/41"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/comments?post=27967"}],"version-history":[{"count":0,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/27967\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media\/27968"}],"wp:attachment":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media?parent=27967"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/categories?post=27967"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/tags?post=27967"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}