{"id":27894,"date":"2022-07-08T07:42:05","date_gmt":"2022-07-08T07:42:05","guid":{"rendered":"http:\/\/censor-images-in-remix-using-ai"},"modified":"2025-03-08T13:45:35","modified_gmt":"2025-03-08T21:45:35","slug":"censor-images-in-remix-using-ai","status":"publish","type":"post","link":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/","title":{"rendered":"Censor Images in Remix Using AI"},"content":{"rendered":"<div class=\"wp-block-cloudinary-markdown \"><h2>Introduction<\/h2>\n<p>Censoring images helps blur or 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>Remix is a full-stack React framework for building web applications. It provides several helpful features such as server-side rendering, file-system-based routing, TypeScript support, built-in support for cookies and sessions, and more.<\/p>\n<h2>What We Will be Building<\/h2>\n<p>This article will discuss how to censor images using Cloudinary and Remix.<\/p>\n<h2>Sandbox<\/h2>\n<p>The completed project is on <a href=\"https:\/\/codesandbox.io\/s\/remix-image-censor-y7vusw\">CodeSandbox<\/a>. Fork it and run the code.<\/p>\n<\/div>\n  \n  <div class=\"wp-block-cloudinary-code-sandbox \">\n    <iframe\n      src=\"https:\/\/codesandbox.io\/embed\/remix-image-censor-y7vusw?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=\"remix-image-censor\"\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 \"><p>The source code is also available on <a href=\"https:\/\/github.com\/Tundesamson26\/Censor-images\">GitHub<\/a>.<\/p>\n<h2>Prerequisites<\/h2>\n<p>The following are requirements to complete this project:<\/p>\n<ul>\n<li>Knowledge of React, Remix<\/li>\n<li>Node.js and its package manager, npm. We run the command <code>node -v<\/code> &amp;&amp; <code>npm -v<\/code> to verify we have them installed or install them from <a href=\"https:\/\/nodejs.org\/en\/\">here<\/a>\n<\/li>\n<li>A Cloudinary account (sign up <a href=\"https:\/\/cloudinary.com\/users\/register\/free\">here<\/a>)<\/li>\n<\/ul>\n<h2>Getting Started<\/h2>\n<p>First, we need to run the command below in the terminal to set up a new Remix application.<\/p>\n<pre class=\"js-syntax-highlighted\"><code>npx create-remix@latest censor-images\n<\/code><\/pre>\n<p>The command above triggers a command-line interface (CLI) where we can configure the application. The images below show the configuration options the CLI provides:<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/cloudinary-marketing-res.cloudinary.com\/image\/upload\/c_limit,w_2000\/f_auto\/q_auto\/media_jams_sanity\/be930bcbc4b99296a85703a0c2450c90c33087ab-1155x310.png\" alt=\"Remix CLI\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"1155\" height=\"310\"\/><\/p>\n<p>Next, navigate into the project directory.<\/p>\n<pre class=\"js-syntax-highlighted\"><code>cd remix-censor-images\n<\/code><\/pre>\n<p>Then, run the command below to start the application.<\/p>\n<pre class=\"js-syntax-highlighted\"><code>npm run dev\n<\/code><\/pre>\n<p>Remix will start a development environment accessible by default at <a href=\"http:\/\/localhost:3000\">http:\/\/localhost:3000<\/a>.<\/p>\n<h2>Installing Cloudinary<\/h2>\n<p><a href=\"https:\/\/cloudinary.com\/\">Cloudinary<\/a> provides a robust solution to store, transform, optimize and deliver images and videos in software applications.<\/p>\n<p>We\u2019ll install the <em><a href=\"https:\/\/cloudinary.com\/\">cloudinary-react<\/a><\/em> package that exposes various media delivery and transformation functions using the command line.<\/p>\n<pre class=\"js-syntax-highlighted\"><code>npm i cloudinary-react lodash\n<\/code><\/pre>\n<blockquote>\n<p>Lodash is a dependency of the Cloudinary package.<\/p>\n<\/blockquote>\n<h2>Setting up Cloudinary<\/h2>\n<p>In our dashboard, we will have access to upload and save the downloaded images in Cloudinary by clicking the Media Library tab and <strong>Upload<\/strong> button, as displayed below.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/cloudinary-marketing-res.cloudinary.com\/image\/upload\/c_limit,w_2000\/f_auto\/q_auto\/media_jams_sanity\/d7d1deb18b8f8e4202ad53918cd2bf3d6495a065-1366x122.png\" alt=\"User-uploaded image: image.png\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"1366\" height=\"122\"\/><\/p>\n<p>Next, we need to copy the <code>publicId<\/code> for the saved images from our dashboard, we\u2019ll use them later to access our images.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/cloudinary-marketing-res.cloudinary.com\/image\/upload\/c_limit,w_2000\/f_auto\/q_auto\/media_jams_sanity\/119b822e3a56ff3b52a8fe52af254c705b1a761b-1357x625.png\" alt=\"image-upload-tab\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"1357\" height=\"625\"\/><\/p>\n<h2>Building the Censor Image Application<\/h2>\n<p>Navigate to the <code>app\/routes\/index.jsx<\/code> file and update it with the code from the gist below.<\/p>\n<p><a href=\"https:\/\/gist.github.com\/Tundesamson26\/c573bdec4c2a2590b014cb56a2eec6ca\">https:\/\/gist.github.com\/Tundesamson26\/c573bdec4c2a2590b014cb56a2eec6ca<\/a><\/p>\n<p>From the gist above, we:<\/p>\n<ul>\n<li>Imported <code>CloudinaryContext<\/code> and added our cloud name<\/li>\n<li>Passed <code>publicId<\/code> 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 images<\/li>\n<\/ul>\n<p>Now, we should see our images with different 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:\/\/cloudinary-marketing-res.cloudinary.com\/image\/upload\/c_limit,w_2000\/f_auto\/q_auto\/media_jams_sanity\/af388475df94315259b2ef974fedc21d8bf44c9b-949x590.png\" alt=\"default-blur-effect\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"949\" height=\"590\"\/><\/p>\n<p>The second image has a lighter blur effect, <code>pixelate_faces:10<\/code>.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/cloudinary-marketing-res.cloudinary.com\/image\/upload\/c_limit,w_2000\/f_auto\/q_auto\/media_jams_sanity\/3a4e2d9593a63736bb518c569050ebb9f258959d-893x623.png\" alt=\"light-censor-image\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"893\" height=\"623\"\/><\/p>\n<p>The third one has a very thick blur effect, <code>pixelate_faces:45<\/code>.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/cloudinary-marketing-res.cloudinary.com\/image\/upload\/c_limit,w_2000\/f_auto\/q_auto\/media_jams_sanity\/189b2fcc5e21f0c9f7490b120aa502abd14df143-732x587.png\" alt=\"thick-censor-image\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"732\" height=\"587\"\/><\/p>\n<h2>Conclusion<\/h2>\n<p>This article taught us how to censor or blur images with Remix and Cloudinary.<\/p>\n<h2>Resources<\/h2>\n<ul>\n<li>\n<a href=\"https:\/\/remix.run\/docs\/en\/v1\">Remix Documentation<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/cloudinary.com\/documentation\/face_detection_based_transformations#effects_with_face_detection\">Effects with face detection<\/a>\n<\/li>\n<li>\n<a href=\"https:\/\/cloudinary.com\/documentation\/image_transformations\">Cloudinary Image Transformation<\/a>\n<\/li>\n<\/ul>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":41,"featured_media":27895,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_cloudinary_featured_overwrite":false,"footnotes":""},"categories":[1],"tags":[134,370,177,246,371],"class_list":["post-27894","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-guest-post","tag-image","tag-javascript","tag-react","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>Censor Images in Remix Using AI<\/title>\n<meta name=\"description\" content=\"This post discusses how to censor images with Remix and Cloudinary AI\" \/>\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\/censor-images-in-remix-using-ai\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Censor Images in Remix Using AI\" \/>\n<meta property=\"og:description\" content=\"This post discusses how to censor images with Remix and Cloudinary AI\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudinary Blog\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-08T07:42:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-08T21:45:35+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/v1681925967\/Web_Assets\/blog\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab-jpg?_i=AA\" \/>\n\t<meta property=\"og:image:width\" content=\"4032\" \/>\n\t<meta property=\"og:image:height\" content=\"3024\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\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\/censor-images-in-remix-using-ai\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"Censor Images in Remix Using AI\",\"datePublished\":\"2022-07-08T07:42:05+00:00\",\"dateModified\":\"2025-03-08T21:45:35+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/\"},\"wordCount\":6,\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681925967\/Web_Assets\/blog\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab.jpg?_i=AA\",\"keywords\":[\"Guest Post\",\"Image\",\"Javascript\",\"React\",\"Under Review\"],\"inLanguage\":\"en-US\",\"copyrightYear\":\"2022\",\"copyrightHolder\":{\"@id\":\"https:\/\/cloudinary.com\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/\",\"url\":\"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/\",\"name\":\"Censor Images in Remix Using AI\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681925967\/Web_Assets\/blog\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab.jpg?_i=AA\",\"datePublished\":\"2022-07-08T07:42:05+00:00\",\"dateModified\":\"2025-03-08T21:45:35+00:00\",\"description\":\"This post discusses how to censor images with Remix and Cloudinary AI\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#primaryimage\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681925967\/Web_Assets\/blog\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab.jpg?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681925967\/Web_Assets\/blog\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab.jpg?_i=AA\",\"width\":4032,\"height\":3024},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudinary.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Censor Images in Remix Using AI\"}]},{\"@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":"Censor Images in Remix Using AI","description":"This post discusses how to censor images with Remix and Cloudinary AI","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\/censor-images-in-remix-using-ai\/","og_locale":"en_US","og_type":"article","og_title":"Censor Images in Remix Using AI","og_description":"This post discusses how to censor images with Remix and Cloudinary AI","og_url":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/","og_site_name":"Cloudinary Blog","article_published_time":"2022-07-08T07:42:05+00:00","article_modified_time":"2025-03-08T21:45:35+00:00","og_image":[{"width":4032,"height":3024,"url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/v1681925967\/Web_Assets\/blog\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab-jpg?_i=AA","type":"image\/jpeg"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#article","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/"},"author":{"name":"","@id":""},"headline":"Censor Images in Remix Using AI","datePublished":"2022-07-08T07:42:05+00:00","dateModified":"2025-03-08T21:45:35+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/"},"wordCount":6,"publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681925967\/Web_Assets\/blog\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab.jpg?_i=AA","keywords":["Guest Post","Image","Javascript","React","Under Review"],"inLanguage":"en-US","copyrightYear":"2022","copyrightHolder":{"@id":"https:\/\/cloudinary.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/","url":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/","name":"Censor Images in Remix Using AI","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#primaryimage"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681925967\/Web_Assets\/blog\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab.jpg?_i=AA","datePublished":"2022-07-08T07:42:05+00:00","dateModified":"2025-03-08T21:45:35+00:00","description":"This post discusses how to censor images with Remix and Cloudinary AI","breadcrumb":{"@id":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#primaryimage","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681925967\/Web_Assets\/blog\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab.jpg?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1681925967\/Web_Assets\/blog\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab.jpg?_i=AA","width":4032,"height":3024},{"@type":"BreadcrumbList","@id":"https:\/\/cloudinary.com\/blog\/guest_post\/censor-images-in-remix-using-ai\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudinary.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Censor Images in Remix Using AI"}]},{"@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\/v1681925967\/Web_Assets\/blog\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab\/d5d7794aa559577dab86148acef427916a4300f2-4032x3024-1_27895073ab.jpg?_i=AA","_links":{"self":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/27894","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=27894"}],"version-history":[{"count":1,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/27894\/revisions"}],"predecessor-version":[{"id":37144,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/27894\/revisions\/37144"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media\/27895"}],"wp:attachment":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media?parent=27894"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/categories?post=27894"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/tags?post=27894"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}