{"id":21634,"date":"2017-12-05T16:50:05","date_gmt":"2017-12-05T16:50:05","guid":{"rendered":"http:\/\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary"},"modified":"2017-12-05T16:50:05","modified_gmt":"2017-12-05T16:50:05","slug":"beyond_drupal_media_make_images_and_video_fly_with_cloudinary","status":"publish","type":"post","link":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary","title":{"rendered":"Beyond Drupal Media: Make Images and Video Fly with Cloudinary"},"content":{"rendered":"<div class=\"wp-block-cloudinary-markdown \"><p>Drupal is a very popular open source content management system (CMS) that has been deployed countless times by organizations and developers around the world. Drupal gained a reputation for being very flexible, powerful and robust in creating complex websites. With Drupal, you can create everything from plain websites, blogs and forums to ambitious enterprise systems.<\/p>\n<p>In fact, a technical editor described Drupal this way: <em>\u201cDrupal knows exactly what it is and makes no excuses for: It strives to be a grenade launcher, not a Swiss army knife.\u201d<\/em> Some others likened Drupal to a powerhouse, not meant for mere mortals as compared to WordPress. Drupal is a registered trademark of <a href=\"http:\/\/buytaert.net\/\">Dries Buytaert<\/a>, which founded Drupal and made the initial release public in 2001. Since then, Drupal has grown in leaps and bounds. The latest <a href=\"https:\/\/www.drupal.org\/project\/drupal\/releases\/8.3.5\">Drupal release is 8.3.5<\/a> at the time of writing.<\/p>\n<p>Currently, Drupal powers about <a href=\"https:\/\/trends.builtwith.com\/cms\">7 percent of the total websites on the internet<\/a>. As a developer setting up Drupal, one of the challenges you might face at some point is efficient handling of media assets (images and videos).  Cloudinary is one of the amazing services out there with a clean API that can ease the pain of storing and transforming images in your Drupal-powered website.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/cloudinary-res.cloudinary.com\/image\/upload\/c_fill\/dpr_auto\/drupal-infographic.jpg\" alt=\"Drupal\" loading=\"lazy\" class=\"c-transformed-asset\"  width=\"1000\" height=\"3769\"\/>\n<span style=\"font-size: 0.8em\"><em>Source: <a href=\"https:\/\/www.appnovation.com\/services\/drupal-development?w=738\">Appnovation, Expert Drupal Developers<\/a><\/em><\/span><\/p>\n<h2>Drupal and Cloudinary Integration<\/h2>\n<p>Fortunately for developers, Cloudinary offers a <a href=\"https:\/\/github.com\/cloudinary\/cloudinary_php\">PHP SDK<\/a> that can be integrated into any PHP-powered CMS.<\/p>\n<ul>\n<li>Create an account on <a href=\"https:\/\/cloudinary.com\/users\/register\/free\">Cloudinary<\/a>.<\/li>\n<li>Install and enable the <a href=\"https:\/\/github.com\/cloudinary\/cloudinary_php\">cloudinary PHP SDK<\/a> in the libraries directory.<\/li>\n<li>Set up your cloud name, API key and secret.<\/li>\n<\/ul>\n<p>With the Cloudinary PHP SDK installed and enabled, there are a ton of transformations you can do to your images in your Drupal media library. Make sure the necessary Cloudinary files are present or required.<\/p>\n<pre class=\"js-syntax-highlighted\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"JavaScript\" data-shcb-language-slug=\"javascript\"><span><code class=\"hljs language-javascript shcb-wrap-lines\"><span class=\"hljs-built_in\">require<\/span> <span class=\"hljs-string\">'Cloudinary.php'<\/span>;\n<span class=\"hljs-built_in\">require<\/span> <span class=\"hljs-string\">'Uploader.php'<\/span>;\n<span class=\"hljs-built_in\">require<\/span> <span class=\"hljs-string\">'Helpers.php'<\/span>;\n<span class=\"hljs-built_in\">require<\/span> <span class=\"hljs-string\">'Api.php'<\/span>;\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">JavaScript<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">javascript<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n<p>Let\u2019s go through some image transformation techniques.<\/p>\n<p>Resizing an uploaded image to half the original width while maintaining aspect ratio:<\/p>\n<pre class=\"js-syntax-highlighted\" aria-describedby=\"shcb-language-2\" data-shcb-language-name=\"PHP\" data-shcb-language-slug=\"php\"><span><code class=\"hljs language-php shcb-wrap-lines\">cl_image_tag(<span class=\"hljs-string\">\"sample.jpg\"<\/span>, <span class=\"hljs-keyword\">array<\/span>(<span class=\"hljs-string\">\"width\"<\/span>=&gt;<span class=\"hljs-number\">0.5<\/span>, <span class=\"hljs-string\">\"crop\"<\/span>=&gt;<span class=\"hljs-string\">\"scale\"<\/span>))\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-2\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PHP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">php<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n<p>Crop an image to a 400&#215;400 circular thumbnail while automatically focusing on the face, and then scale down the result to a width of 200 pixels:<\/p>\n<pre class=\"js-syntax-highlighted\" aria-describedby=\"shcb-language-3\" data-shcb-language-name=\"PHP\" data-shcb-language-slug=\"php\"><span><code class=\"hljs language-php shcb-wrap-lines\">cl_image_tag(<span class=\"hljs-string\">\"lady.jpg\"<\/span>, <span class=\"hljs-keyword\">array<\/span>(<span class=\"hljs-string\">\"transformation\"<\/span>=&gt;<span class=\"hljs-keyword\">array<\/span>(\n  <span class=\"hljs-keyword\">array<\/span>(<span class=\"hljs-string\">\"width\"<\/span>=&gt;<span class=\"hljs-number\">400<\/span>, <span class=\"hljs-string\">\"height\"<\/span>=&gt;<span class=\"hljs-number\">400<\/span>, <span class=\"hljs-string\">\"gravity\"<\/span>=&gt;<span class=\"hljs-string\">\"face\"<\/span>, <span class=\"hljs-string\">\"radius\"<\/span>=&gt;<span class=\"hljs-string\">\"max\"<\/span>, <span class=\"hljs-string\">\"crop\"<\/span>=&gt;<span class=\"hljs-string\">\"crop\"<\/span>),\n  <span class=\"hljs-keyword\">array<\/span>(<span class=\"hljs-string\">\"width\"<\/span>=&gt;<span class=\"hljs-number\">200<\/span>, <span class=\"hljs-string\">\"crop\"<\/span>=&gt;<span class=\"hljs-string\">\"scale\"<\/span>)\n  )))\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-3\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PHP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">php<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n<p>Create a 150&#215;150 thumbnail of an uploaded image with face detection:<\/p>\n<pre class=\"js-syntax-highlighted\" aria-describedby=\"shcb-language-4\" data-shcb-language-name=\"PHP\" data-shcb-language-slug=\"php\"><span><code class=\"hljs language-php shcb-wrap-lines\">cl_image_tag(<span class=\"hljs-string\">\"woman.jpg\"<\/span>, <span class=\"hljs-keyword\">array<\/span>(<span class=\"hljs-string\">\"gravity\"<\/span>=&gt;<span class=\"hljs-string\">\"face\"<\/span>, <span class=\"hljs-string\">\"width\"<\/span>=&gt;<span class=\"hljs-number\">150<\/span>, <span class=\"hljs-string\">\"height\"<\/span>=&gt;<span class=\"hljs-number\">150<\/span>, <span class=\"hljs-string\">\"crop\"<\/span>=&gt;<span class=\"hljs-string\">\"thumb\"<\/span>))\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-4\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PHP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">php<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n<p>Generate a 100&#215;100 face-detection-based circular thumbnail of an image named lady, and add another image named cloudinary_icon as a semi-transparent watermark with a width of 50 pixels:<\/p>\n<pre class=\"js-syntax-highlighted\" aria-describedby=\"shcb-language-5\" data-shcb-language-name=\"PHP\" data-shcb-language-slug=\"php\"><span><code class=\"hljs language-php shcb-wrap-lines\">cl_image_tag(<span class=\"hljs-string\">\"lady.jpg\"<\/span>, <span class=\"hljs-keyword\">array<\/span>(<span class=\"hljs-string\">\"transformation\"<\/span>=&gt;<span class=\"hljs-keyword\">array<\/span>(\n  <span class=\"hljs-keyword\">array<\/span>(<span class=\"hljs-string\">\"width\"<\/span>=&gt;<span class=\"hljs-number\">100<\/span>, <span class=\"hljs-string\">\"height\"<\/span>=&gt;<span class=\"hljs-number\">100<\/span>, <span class=\"hljs-string\">\"gravity\"<\/span>=&gt;<span class=\"hljs-string\">\"face\"<\/span>, <span class=\"hljs-string\">\"radius\"<\/span>=&gt;<span class=\"hljs-string\">\"max\"<\/span>, <span class=\"hljs-string\">\"crop\"<\/span>=&gt;<span class=\"hljs-string\">\"thumb\"<\/span>),\n  <span class=\"hljs-keyword\">array<\/span>(<span class=\"hljs-string\">\"overlay\"<\/span>=&gt;<span class=\"hljs-string\">\"cloudinary_icon\"<\/span>, <span class=\"hljs-string\">\"effect\"<\/span>=&gt;<span class=\"hljs-string\">\"brightness:200\"<\/span>, <span class=\"hljs-string\">\"flags\"<\/span>=&gt;<span class=\"hljs-string\">\"relative\"<\/span>, <span class=\"hljs-string\">\"width\"<\/span>=&gt;<span class=\"hljs-number\">0.5<\/span>, <span class=\"hljs-string\">\"opacity\"<\/span>=&gt;<span class=\"hljs-number\">60<\/span>),\n  <span class=\"hljs-keyword\">array<\/span>(<span class=\"hljs-string\">\"dpr\"<\/span>=&gt;<span class=\"hljs-number\">2.0<\/span>)\n  )))\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-5\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PHP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">php<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n<p>Decrease the size of the image by reducing the quality:<\/p>\n<pre class=\"js-syntax-highlighted\" aria-describedby=\"shcb-language-6\" data-shcb-language-name=\"PHP\" data-shcb-language-slug=\"php\"><span><code class=\"hljs language-php shcb-wrap-lines\">cl_image_tag(<span class=\"hljs-string\">\"sample.jpg\"<\/span>, <span class=\"hljs-keyword\">array<\/span>(<span class=\"hljs-string\">\"quality\"<\/span>=&gt;<span class=\"hljs-number\">60<\/span>))\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-6\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">PHP<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">php<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n<h2>No SDK? No Problem<\/h2>\n<p>While the PHP SDK is available, you might not be able to install or configure it as described above. Cloudinary provides on-the-fly URL transformation techniques that you can apply, enabling you to do exactly what is possible with the PHP SDK.<\/p>\n<p>Let\u2019s go through the image transformation techniques we performed above, but simply with the URL.<\/p>\n<p>Resizing an uploaded image to half the original width while maintaining aspect ratio:<\/p>\n<pre class=\"js-syntax-highlighted\" aria-describedby=\"shcb-language-7\" data-shcb-language-name=\"JavaScript\" data-shcb-language-slug=\"javascript\"><span><code class=\"hljs language-javascript shcb-wrap-lines\">https:<span class=\"hljs-comment\">\/\/res.cloudinary.com\/demo\/image\/upload\/w_0.5\/sample.jpg<\/span>\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-7\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">JavaScript<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">javascript<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n<p>Crop an image to a 400&#215;400 circular thumbnail while automatically focusing on the face, and then scale down the result to a width of 200 pixels:<\/p>\n<pre class=\"js-syntax-highlighted\" aria-describedby=\"shcb-language-8\" data-shcb-language-name=\"JavaScript\" data-shcb-language-slug=\"javascript\"><span><code class=\"hljs language-javascript shcb-wrap-lines\">https:<span class=\"hljs-comment\">\/\/res.cloudinary.com\/demo\/image\/upload\/w_400,h_400,c_crop,g_face,r_max\/w_200\/lady.jpg<\/span>\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-8\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">JavaScript<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">javascript<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n<p>Create a 150&#215;150 thumbnail of an uploaded image with face detection:<\/p>\n<pre class=\"js-syntax-highlighted\" aria-describedby=\"shcb-language-9\" data-shcb-language-name=\"JavaScript\" data-shcb-language-slug=\"javascript\"><span><code class=\"hljs language-javascript shcb-wrap-lines\">https:<span class=\"hljs-comment\">\/\/res.cloudinary.com\/demo\/image\/upload\/w_150,h_150,c_thumb,g_face\/woman.jpg<\/span>\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-9\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">JavaScript<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">javascript<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n<p>Generate a 100&#215;100 face-detection-based circular thumbnail of an image named lady, and add another image named cloudinary_icon as a semi-transparent watermark with a width of 50 pixels:<\/p>\n<pre class=\"js-syntax-highlighted\" aria-describedby=\"shcb-language-10\" data-shcb-language-name=\"JavaScript\" data-shcb-language-slug=\"javascript\"><span><code class=\"hljs language-javascript shcb-wrap-lines\">https:<span class=\"hljs-comment\">\/\/res.cloudinary.com\/demo\/image\/upload\/c_thumb,w_100,h_100,g_face,r_max\/l_cloudinary_icon,e_brightness:200,fl_relative,w_0.5,o_60\/dpr_2.0\/lady.jpg<\/span>\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-10\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">JavaScript<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">javascript<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n<p>Decrease the size of the image by reducing the quality:<\/p>\n<pre class=\"js-syntax-highlighted\" aria-describedby=\"shcb-language-11\" data-shcb-language-name=\"JavaScript\" data-shcb-language-slug=\"javascript\"><span><code class=\"hljs language-javascript shcb-wrap-lines\">https:<span class=\"hljs-comment\">\/\/res.cloudinary.com\/demo\/image\/upload\/q_60\/sample.jpg<\/span>\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-11\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">JavaScript<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">javascript<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n<h2>Conclusion<\/h2>\n<p>We have learned a bit about how you can manipulate your images in Drupal using the powerful Cloudinary API. There are many more image optimization and transformation techniques you can perform via URL using Cloudinary.<\/p>\n<p>With Cloudinary, you can store, and deliver media assets efficiently. Want more amazing image management solutions, check out the <a href=\"https:\/\/cloudinary.com\/documentation\/image_optimization\">documentation<\/a>.<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":41,"featured_media":21635,"comment_status":"","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_cloudinary_featured_overwrite":false,"footnotes":""},"categories":[1],"tags":[25,134],"class_list":["post-21634","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-asset-management","tag-guest-post"],"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>Beyond Drupal Media: Make Images and Video Fly with Cloudinary<\/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\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Beyond Drupal Media: Make Images and Video Fly with Cloudinary\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary\" \/>\n<meta property=\"og:site_name\" content=\"Cloudinary Blog\" \/>\n<meta property=\"article:published_time\" content=\"2017-12-05T16:50:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649723695\/Web_Assets\/blog\/Cloudinary_Drupal_2000x1100_v1-1\/Cloudinary_Drupal_2000x1100_v1-1.jpg?_i=AA\" \/>\n\t<meta property=\"og:image:width\" content=\"1540\" \/>\n\t<meta property=\"og:image:height\" content=\"847\" \/>\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\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#article\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary\"},\"author\":{\"name\":\"\",\"@id\":\"\"},\"headline\":\"Beyond Drupal Media: Make Images and Video Fly with Cloudinary\",\"datePublished\":\"2017-12-05T16:50:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary\"},\"wordCount\":10,\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649723695\/Web_Assets\/blog\/Cloudinary_Drupal_2000x1100_v1-1\/Cloudinary_Drupal_2000x1100_v1-1.jpg?_i=AA\",\"keywords\":[\"Asset Management\",\"Guest Post\"],\"inLanguage\":\"en-US\",\"copyrightYear\":\"2017\",\"copyrightHolder\":{\"@id\":\"https:\/\/cloudinary.com\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary\",\"url\":\"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary\",\"name\":\"Beyond Drupal Media: Make Images and Video Fly with Cloudinary\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649723695\/Web_Assets\/blog\/Cloudinary_Drupal_2000x1100_v1-1\/Cloudinary_Drupal_2000x1100_v1-1.jpg?_i=AA\",\"datePublished\":\"2017-12-05T16:50:05+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#primaryimage\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649723695\/Web_Assets\/blog\/Cloudinary_Drupal_2000x1100_v1-1\/Cloudinary_Drupal_2000x1100_v1-1.jpg?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649723695\/Web_Assets\/blog\/Cloudinary_Drupal_2000x1100_v1-1\/Cloudinary_Drupal_2000x1100_v1-1.jpg?_i=AA\",\"width\":1540,\"height\":847},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudinary.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Beyond Drupal Media: Make Images and Video Fly with Cloudinary\"}]},{\"@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":"Beyond Drupal Media: Make Images and Video Fly with Cloudinary","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\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary","og_locale":"en_US","og_type":"article","og_title":"Beyond Drupal Media: Make Images and Video Fly with Cloudinary","og_url":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary","og_site_name":"Cloudinary Blog","article_published_time":"2017-12-05T16:50:05+00:00","og_image":[{"width":1540,"height":847,"url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649723695\/Web_Assets\/blog\/Cloudinary_Drupal_2000x1100_v1-1\/Cloudinary_Drupal_2000x1100_v1-1.jpg?_i=AA","type":"image\/jpeg"}],"twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#article","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary"},"author":{"name":"","@id":""},"headline":"Beyond Drupal Media: Make Images and Video Fly with Cloudinary","datePublished":"2017-12-05T16:50:05+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary"},"wordCount":10,"publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649723695\/Web_Assets\/blog\/Cloudinary_Drupal_2000x1100_v1-1\/Cloudinary_Drupal_2000x1100_v1-1.jpg?_i=AA","keywords":["Asset Management","Guest Post"],"inLanguage":"en-US","copyrightYear":"2017","copyrightHolder":{"@id":"https:\/\/cloudinary.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary","url":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary","name":"Beyond Drupal Media: Make Images and Video Fly with Cloudinary","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#primaryimage"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649723695\/Web_Assets\/blog\/Cloudinary_Drupal_2000x1100_v1-1\/Cloudinary_Drupal_2000x1100_v1-1.jpg?_i=AA","datePublished":"2017-12-05T16:50:05+00:00","breadcrumb":{"@id":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#primaryimage","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649723695\/Web_Assets\/blog\/Cloudinary_Drupal_2000x1100_v1-1\/Cloudinary_Drupal_2000x1100_v1-1.jpg?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649723695\/Web_Assets\/blog\/Cloudinary_Drupal_2000x1100_v1-1\/Cloudinary_Drupal_2000x1100_v1-1.jpg?_i=AA","width":1540,"height":847},{"@type":"BreadcrumbList","@id":"https:\/\/cloudinary.com\/blog\/beyond_drupal_media_make_images_and_video_fly_with_cloudinary#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudinary.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Beyond Drupal Media: Make Images and Video Fly with Cloudinary"}]},{"@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\/v1649723695\/Web_Assets\/blog\/Cloudinary_Drupal_2000x1100_v1-1\/Cloudinary_Drupal_2000x1100_v1-1.jpg?_i=AA","_links":{"self":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/21634","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=21634"}],"version-history":[{"count":0,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/21634\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media\/21635"}],"wp:attachment":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media?parent=21634"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/categories?post=21634"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/tags?post=21634"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}