Cloudinary Blog

Are your website images ready to embrace the iPhone X notch?

Are your website images ready to embrace the iPhone X notch?

The announcement of the iPhone 8, 8 plus and the iPhone X at the iPhone 10th anniversary Apple event on 12th September 2017, came with a massive buzz.

The iPhone X (pronounced "iPhone 10") has a 5.8-inch super retina screen, which stands out amongst other Apples, giving the machine the tagline “it is all screen”. A resolution of 2436 x 1125 is also featured, making it the highest resolution iPhone to date.

Since the announcement, designers and prototypers have obviously been working in full gear to carve out products and designs to match the upcoming iPhone X.

That Notch

This is arguably one of the fascinating features of the iPhone X! (and the wonderful portrait above too). The Notch up top. Bold, elegant, has the flows around it and still fascinating, even though the guy in the portrait below doesn’t seem so thrilled.

One Notch to Rule All

We have to find a way to make him happy, how to make the notch really beautiful and useful for our images. Let’s do this with Cloudinary image transformation tools.

The iPhone X screen is unique in that the dark space (notch) that houses the camera and other sensors are actually part of the hard glass screen and content displayed flows around this notch. This is a very important aspect to consider in the UI/UX design of products to fit the all screen iPhone. In this article, we will discuss a way to fix your images, testing how it would look on the iPhone X.

spot the notch on top

How do you work with that screen?

Image management and transformation can be done on-the-fly with Cloudinary. And when I say on-the-fly, that means that images are transformed using dynamic delivery of their URLs!

Cloudinary also offers mobile-first image optimization for mobile design and the best part, it’s easy to use. These images are cached on the CDN and are immediately available upon request.

Cloudinary’s image management and transformation service will be used in this article to simulate how images fit on the iPhone X screen. With this, you can test your images and products to see how well they fit on this new type of screenX.

Before we begin, let’s have a look at the sample image we will be transforming.

image manipulation

Transform the image

To perform this test, you need the notch image. iphone_x_notch overlay

Next, upload the image to be transformed. In our case, we uploaded the overhead swimming pool image displayed above.

Now we need to apply the transformation. Images in Cloudinary take the form of:

Copy to clipboard
https://res.cloudinary.com/<cloud_name>/image/upload/<transformation_parameters>/<public_ID>.<image_format_file_extension>

So to adjust the swimming pool image, we use the URL below, and work on the <transformation parameters> portion: https://cloudinary-res.cloudinary.com/image/upload/ <transformation-parameters> /Spencer_Watson.jpg

Cloudinary offers lots of image URL transformation parameters and they can be found here. For this test, we are going to be using quite a few parameters. The URL might look a bit scary at first, but scroll down a bit and we will walk you through the whole thing.:

Ruby:
Copy to clipboard
cl_image_tag("spencer-watson-36.jpg", :transformation=>[
  {:if=>"ar_gt_1"},
  {:height=>562, :width=>1218, :crop=>"fill"},
  {:overlay=>"iphone_x_notch", :width=>325, :crop=>"scale"},
  {:angle=>90},
  {:angle=>"hflip"},
  {:flags=>"layer_apply", :gravity=>"west"},
  {:if=>"else"},
  {:height=>1218, :width=>562, :crop=>"fill"},
  {:gravity=>"north", :overlay=>"iphone_x_notch", :width=>325, :crop=>"scale"},
  {:if=>"end"},
  {:background=>"#000000", :radius=>54}
  ])
PHP v1:
Copy to clipboard
cl_image_tag("spencer-watson-36.jpg", array("transformation"=>array(
  array("if"=>"ar_gt_1"),
  array("height"=>562, "width"=>1218, "crop"=>"fill"),
  array("overlay"=>"iphone_x_notch", "width"=>325, "crop"=>"scale"),
  array("angle"=>90),
  array("angle"=>"hflip"),
  array("flags"=>"layer_apply", "gravity"=>"west"),
  array("if"=>"else"),
  array("height"=>1218, "width"=>562, "crop"=>"fill"),
  array("gravity"=>"north", "overlay"=>"iphone_x_notch", "width"=>325, "crop"=>"scale"),
  array("if"=>"end"),
  array("background"=>"#000000", "radius"=>54)
  )))
PHP v2:
Copy to clipboard
(new ImageTag('spencer-watson-36.jpg'))
  ->conditional(
      Conditional::ifCondition('aspect_ratio > 1', (new Transformation())
        ->resize(Resize::fill()->width(1218)->height(562))
        ->overlay(
            Overlay::source(Source::image('iphone_x_notch')
              ->transformation((new ImageTransformation())
                ->resize(Resize::scale()->width(325))
                ->rotate(Rotate::byAngle(90))
                ->rotate(Rotate::mode(RotationMode::horizontalFlip()))))
            ->position((new Position())
              ->gravity(Gravity::compass(Compass::west())))))
        ->otherwise((new Transformation())
          ->resize(Resize::fill()->width(562)->height(1218))
          ->overlay(
              Overlay::source(Source::image('iphone_x_notch')
                ->transformation((new ImageTransformation())
                  ->resize(Resize::scale()->width(325))))
              ->position((new Position())
                ->gravity(Gravity::compass(Compass::north()))))))
              ->roundCorners(RoundCorners::byRadius(54))
              ->backgroundColor(Color::rgb('000000'));
Python:
Copy to clipboard
CloudinaryImage("spencer-watson-36.jpg").image(transformation=[
  {'if': "ar_gt_1"},
  {'height': 562, 'width': 1218, 'crop': "fill"},
  {'overlay': "iphone_x_notch", 'width': 325, 'crop': "scale"},
  {'angle': 90},
  {'angle': "hflip"},
  {'flags': "layer_apply", 'gravity': "west"},
  {'if': "else"},
  {'height': 1218, 'width': 562, 'crop': "fill"},
  {'gravity': "north", 'overlay': "iphone_x_notch", 'width': 325, 'crop': "scale"},
  {'if': "end"},
  {'background': "#000000", 'radius': 54}
  ])
Node.js:
Copy to clipboard
cloudinary.image("spencer-watson-36.jpg", {transformation: [
  {if: "ar_gt_1"},
  {height: 562, width: 1218, crop: "fill"},
  {overlay: "iphone_x_notch", width: 325, crop: "scale"},
  {angle: 90},
  {angle: "hflip"},
  {flags: "layer_apply", gravity: "west"},
  {if: "else"},
  {height: 1218, width: 562, crop: "fill"},
  {gravity: "north", overlay: "iphone_x_notch", width: 325, crop: "scale"},
  {if: "end"},
  {background: "#000000", radius: 54}
  ]})
Java:
Copy to clipboard
cloudinary.url().transformation(new Transformation()
  .if("ar_gt_1").chain()
  .height(562).width(1218).crop("fill").chain()
  .overlay(new Layer().publicId("iphone_x_notch")).width(325).crop("scale").chain()
  .angle(90).chain()
  .angle("hflip").chain()
  .flags("layer_apply").gravity("west").chain()
  .if("else").chain()
  .height(1218).width(562).crop("fill").chain()
  .gravity("north").overlay(new Layer().publicId("iphone_x_notch")).width(325).crop("scale").chain()
  .if("end").chain()
  .background("#000000").radius(54)).imageTag("spencer-watson-36.jpg");
JS:
Copy to clipboard
cloudinary.imageTag('spencer-watson-36.jpg', {transformation: [
  {if: "ar_gt_1"},
  {height: 562, width: 1218, crop: "fill"},
  {overlay: new cloudinary.Layer().publicId("iphone_x_notch"), width: 325, crop: "scale"},
  {angle: 90},
  {angle: "hflip"},
  {flags: "layer_apply", gravity: "west"},
  {if: "else"},
  {height: 1218, width: 562, crop: "fill"},
  {gravity: "north", overlay: new cloudinary.Layer().publicId("iphone_x_notch"), width: 325, crop: "scale"},
  {if: "end"},
  {background: "#000000", radius: 54}
  ]}).toHtml();
jQuery:
Copy to clipboard
$.cloudinary.image("spencer-watson-36.jpg", {transformation: [
  {if: "ar_gt_1"},
  {height: 562, width: 1218, crop: "fill"},
  {overlay: new cloudinary.Layer().publicId("iphone_x_notch"), width: 325, crop: "scale"},
  {angle: 90},
  {angle: "hflip"},
  {flags: "layer_apply", gravity: "west"},
  {if: "else"},
  {height: 1218, width: 562, crop: "fill"},
  {gravity: "north", overlay: new cloudinary.Layer().publicId("iphone_x_notch"), width: 325, crop: "scale"},
  {if: "end"},
  {background: "#000000", radius: 54}
  ]})
React:
Copy to clipboard
<Image publicId="spencer-watson-36.jpg" >
  <Transformation if="ar_gt_1" />
  <Transformation height="562" width="1218" crop="fill" />
  <Transformation overlay="iphone_x_notch" width="325" crop="scale" />
  <Transformation angle="90" />
  <Transformation angle="hflip" />
  <Transformation flags="layer_apply" gravity="west" />
  <Transformation if="else" />
  <Transformation height="1218" width="562" crop="fill" />
  <Transformation gravity="north" overlay="iphone_x_notch" width="325" crop="scale" />
  <Transformation if="end" />
  <Transformation background="#000000" radius="54" />
</Image>
Vue.js:
Copy to clipboard
<cld-image publicId="spencer-watson-36.jpg" >
  <cld-transformation if="ar_gt_1" />
  <cld-transformation height="562" width="1218" crop="fill" />
  <cld-transformation :overlay="iphone_x_notch" width="325" crop="scale" />
  <cld-transformation angle="90" />
  <cld-transformation angle="hflip" />
  <cld-transformation flags="layer_apply" gravity="west" />
  <cld-transformation if="else" />
  <cld-transformation height="1218" width="562" crop="fill" />
  <cld-transformation gravity="north" :overlay="iphone_x_notch" width="325" crop="scale" />
  <cld-transformation if="end" />
  <cld-transformation background="#000000" radius="54" />
</cld-image>
Angular:
Copy to clipboard
<cl-image public-id="spencer-watson-36.jpg" >
  <cl-transformation if="ar_gt_1">
  </cl-transformation>
  <cl-transformation height="562" width="1218" crop="fill">
  </cl-transformation>
  <cl-transformation overlay="iphone_x_notch" width="325" crop="scale">
  </cl-transformation>
  <cl-transformation angle="90">
  </cl-transformation>
  <cl-transformation angle="hflip">
  </cl-transformation>
  <cl-transformation flags="layer_apply" gravity="west">
  </cl-transformation>
  <cl-transformation if="else">
  </cl-transformation>
  <cl-transformation height="1218" width="562" crop="fill">
  </cl-transformation>
  <cl-transformation gravity="north" overlay="iphone_x_notch" width="325" crop="scale">
  </cl-transformation>
  <cl-transformation if="end">
  </cl-transformation>
  <cl-transformation background="#000000" radius="54">
  </cl-transformation>
</cl-image>
.NET:
Copy to clipboard
cloudinary.Api.UrlImgUp.Transform(new Transformation()
  .If("ar_gt_1").Chain()
  .Height(562).Width(1218).Crop("fill").Chain()
  .Overlay(new Layer().PublicId("iphone_x_notch")).Width(325).Crop("scale").Chain()
  .Angle(90).Chain()
  .Angle("hflip").Chain()
  .Flags("layer_apply").Gravity("west").Chain()
  .If("else").Chain()
  .Height(1218).Width(562).Crop("fill").Chain()
  .Gravity("north").Overlay(new Layer().PublicId("iphone_x_notch")).Width(325).Crop("scale").Chain()
  .If("end").Chain()
  .Background("#000000").Radius(54)).BuildImageTag("spencer-watson-36.jpg")
Android:
Copy to clipboard
MediaManager.get().url().transformation(new Transformation()
  .if("ar_gt_1").chain()
  .height(562).width(1218).crop("fill").chain()
  .overlay(new Layer().publicId("iphone_x_notch")).width(325).crop("scale").chain()
  .angle(90).chain()
  .angle("hflip").chain()
  .flags("layer_apply").gravity("west").chain()
  .if("else").chain()
  .height(1218).width(562).crop("fill").chain()
  .gravity("north").overlay(new Layer().publicId("iphone_x_notch")).width(325).crop("scale").chain()
  .if("end").chain()
  .background("#000000").radius(54)).generate("spencer-watson-36.jpg");
iOS:
Copy to clipboard
imageView.cldSetImage(cloudinary.createUrl().setTransformation(CLDTransformation()
  .setIf("ar_gt_1").chain()
  .setHeight(562).setWidth(1218).setCrop("fill").chain()
  .setOverlay("iphone_x_notch").setWidth(325).setCrop("scale").chain()
  .setAngle(90).chain()
  .setAngle("hflip").chain()
  .setFlags("layer_apply").setGravity("west").chain()
  .setIf("else").chain()
  .setHeight(1218).setWidth(562).setCrop("fill").chain()
  .setGravity("north").setOverlay("iphone_x_notch").setWidth(325).setCrop("scale").chain()
  .setIf("end").chain()
  .setBackground("#000000").setRadius(54)).generate("spencer-watson-36.jpg")!, cloudinary: cloudinary)
image manipulation

Looking at the URL, you can see what it means:

  • if_ar_gt_1: If the aspect ratio of the image is greater than 1 (landscape):, c_fill,h_562,w_1218: resize the image to a height of 562 and a width of 1218 maintaining aspect ratio c_scale,l_iphone_x_notch,w_325: add the iphone_x_notch image as an overlay resized to a width of 325 (regardless of its aspect ratio) a_90/a_hflip: rotate the iphone_x_notch overlay by 90 degrees and do a horizontal mirror flip on it, g_west,fl_layer_apply: ensure the f the notch overlay is located on the far left of the parent image. End transformations to this layer.

  • if_else: But if the aspect ratio of the image is not greater than 1 (portrait): c_fill,h_1218,w_562: resize the image to a height of 1218 and a width of 562, maintaining aspect ratio c_scale,g_north,l_iphone_x_notch,w_325: add a layer of the iphone_x_notch image resized to a width of 325 regardless of its aspect ratio and place it at the center-north of the parent image.

  • if_end: End the If statement.

  • b_rgb:000000,r_54: Apply a black background to the image and round the corners to a border radius of 54.

Let's take a look at this same transformation on another image, this time a landscape image. All you have to do is use the same conditional transformation URL with a different public ID:

Ruby:
Copy to clipboard
cl_image_tag("country_sunset.jpg", :transformation=>[
  {:if=>"ar_gt_1"},
  {:height=>562, :width=>1218, :crop=>"fill"},
  {:overlay=>"iphone_x_notch", :width=>325, :crop=>"scale"},
  {:angle=>90},
  {:angle=>"hflip"},
  {:flags=>"layer_apply", :gravity=>"west"},
  {:if=>"else"},
  {:height=>1218, :width=>562, :crop=>"fill"},
  {:gravity=>"north", :overlay=>"iphone_x_notch", :width=>325},
  {:if=>"end"},
  {:background=>"#000000", :radius=>54}
  ])
PHP v1:
Copy to clipboard
cl_image_tag("country_sunset.jpg", array("transformation"=>array(
  array("if"=>"ar_gt_1"),
  array("height"=>562, "width"=>1218, "crop"=>"fill"),
  array("overlay"=>"iphone_x_notch", "width"=>325, "crop"=>"scale"),
  array("angle"=>90),
  array("angle"=>"hflip"),
  array("flags"=>"layer_apply", "gravity"=>"west"),
  array("if"=>"else"),
  array("height"=>1218, "width"=>562, "crop"=>"fill"),
  array("gravity"=>"north", "overlay"=>"iphone_x_notch", "width"=>325),
  array("if"=>"end"),
  array("background"=>"#000000", "radius"=>54)
  )))
PHP v2:
Copy to clipboard
(new ImageTag('country_sunset.jpg'))
  ->conditional(
      Conditional::ifCondition('aspect_ratio > 1', (new Transformation())
        ->resize(Resize::fill()->width(1218)->height(562))
        ->overlay(
            Overlay::source(Source::image('iphone_x_notch')
              ->transformation((new ImageTransformation())
                ->resize(Resize::scale()->width(325))
                ->rotate(Rotate::byAngle(90))
                ->rotate(Rotate::mode(RotationMode::horizontalFlip()))))
            ->position((new Position())
              ->gravity(Gravity::compass(Compass::west())))))
        ->otherwise((new Transformation())
          ->resize(Resize::fill()->width(562)->height(1218))
          ->overlay(
              Overlay::source(Source::image('iphone_x_notch')
                ->transformation((new ImageTransformation())
                  ->resize(Resize::scale()->width(325))))
              ->position((new Position())
                ->gravity(Gravity::compass(Compass::north()))))))
              ->roundCorners(RoundCorners::byRadius(54))
              ->backgroundColor(Color::rgb('000000'));
Python:
Copy to clipboard
CloudinaryImage("country_sunset.jpg").image(transformation=[
  {'if': "ar_gt_1"},
  {'height': 562, 'width': 1218, 'crop': "fill"},
  {'overlay': "iphone_x_notch", 'width': 325, 'crop': "scale"},
  {'angle': 90},
  {'angle': "hflip"},
  {'flags': "layer_apply", 'gravity': "west"},
  {'if': "else"},
  {'height': 1218, 'width': 562, 'crop': "fill"},
  {'gravity': "north", 'overlay': "iphone_x_notch", 'width': 325},
  {'if': "end"},
  {'background': "#000000", 'radius': 54}
  ])
Node.js:
Copy to clipboard
cloudinary.image("country_sunset.jpg", {transformation: [
  {if: "ar_gt_1"},
  {height: 562, width: 1218, crop: "fill"},
  {overlay: "iphone_x_notch", width: 325, crop: "scale"},
  {angle: 90},
  {angle: "hflip"},
  {flags: "layer_apply", gravity: "west"},
  {if: "else"},
  {height: 1218, width: 562, crop: "fill"},
  {gravity: "north", overlay: "iphone_x_notch", width: 325},
  {if: "end"},
  {background: "#000000", radius: 54}
  ]})
Java:
Copy to clipboard
cloudinary.url().transformation(new Transformation()
  .if("ar_gt_1").chain()
  .height(562).width(1218).crop("fill").chain()
  .overlay(new Layer().publicId("iphone_x_notch")).width(325).crop("scale").chain()
  .angle(90).chain()
  .angle("hflip").chain()
  .flags("layer_apply").gravity("west").chain()
  .if("else").chain()
  .height(1218).width(562).crop("fill").chain()
  .gravity("north").overlay(new Layer().publicId("iphone_x_notch")).width(325).chain()
  .if("end").chain()
  .background("#000000").radius(54)).imageTag("country_sunset.jpg");
JS:
Copy to clipboard
cloudinary.imageTag('country_sunset.jpg', {transformation: [
  {if: "ar_gt_1"},
  {height: 562, width: 1218, crop: "fill"},
  {overlay: new cloudinary.Layer().publicId("iphone_x_notch"), width: 325, crop: "scale"},
  {angle: 90},
  {angle: "hflip"},
  {flags: "layer_apply", gravity: "west"},
  {if: "else"},
  {height: 1218, width: 562, crop: "fill"},
  {gravity: "north", overlay: new cloudinary.Layer().publicId("iphone_x_notch"), width: 325},
  {if: "end"},
  {background: "#000000", radius: 54}
  ]}).toHtml();
jQuery:
Copy to clipboard
$.cloudinary.image("country_sunset.jpg", {transformation: [
  {if: "ar_gt_1"},
  {height: 562, width: 1218, crop: "fill"},
  {overlay: new cloudinary.Layer().publicId("iphone_x_notch"), width: 325, crop: "scale"},
  {angle: 90},
  {angle: "hflip"},
  {flags: "layer_apply", gravity: "west"},
  {if: "else"},
  {height: 1218, width: 562, crop: "fill"},
  {gravity: "north", overlay: new cloudinary.Layer().publicId("iphone_x_notch"), width: 325},
  {if: "end"},
  {background: "#000000", radius: 54}
  ]})
React:
Copy to clipboard
<Image publicId="country_sunset.jpg" >
  <Transformation if="ar_gt_1" />
  <Transformation height="562" width="1218" crop="fill" />
  <Transformation overlay="iphone_x_notch" width="325" crop="scale" />
  <Transformation angle="90" />
  <Transformation angle="hflip" />
  <Transformation flags="layer_apply" gravity="west" />
  <Transformation if="else" />
  <Transformation height="1218" width="562" crop="fill" />
  <Transformation gravity="north" overlay="iphone_x_notch" width="325" />
  <Transformation if="end" />
  <Transformation background="#000000" radius="54" />
</Image>
Vue.js:
Copy to clipboard
<cld-image publicId="country_sunset.jpg" >
  <cld-transformation if="ar_gt_1" />
  <cld-transformation height="562" width="1218" crop="fill" />
  <cld-transformation :overlay="iphone_x_notch" width="325" crop="scale" />
  <cld-transformation angle="90" />
  <cld-transformation angle="hflip" />
  <cld-transformation flags="layer_apply" gravity="west" />
  <cld-transformation if="else" />
  <cld-transformation height="1218" width="562" crop="fill" />
  <cld-transformation gravity="north" :overlay="iphone_x_notch" width="325" />
  <cld-transformation if="end" />
  <cld-transformation background="#000000" radius="54" />
</cld-image>
Angular:
Copy to clipboard
<cl-image public-id="country_sunset.jpg" >
  <cl-transformation if="ar_gt_1">
  </cl-transformation>
  <cl-transformation height="562" width="1218" crop="fill">
  </cl-transformation>
  <cl-transformation overlay="iphone_x_notch" width="325" crop="scale">
  </cl-transformation>
  <cl-transformation angle="90">
  </cl-transformation>
  <cl-transformation angle="hflip">
  </cl-transformation>
  <cl-transformation flags="layer_apply" gravity="west">
  </cl-transformation>
  <cl-transformation if="else">
  </cl-transformation>
  <cl-transformation height="1218" width="562" crop="fill">
  </cl-transformation>
  <cl-transformation gravity="north" overlay="iphone_x_notch" width="325">
  </cl-transformation>
  <cl-transformation if="end">
  </cl-transformation>
  <cl-transformation background="#000000" radius="54">
  </cl-transformation>
</cl-image>
.NET:
Copy to clipboard
cloudinary.Api.UrlImgUp.Transform(new Transformation()
  .If("ar_gt_1").Chain()
  .Height(562).Width(1218).Crop("fill").Chain()
  .Overlay(new Layer().PublicId("iphone_x_notch")).Width(325).Crop("scale").Chain()
  .Angle(90).Chain()
  .Angle("hflip").Chain()
  .Flags("layer_apply").Gravity("west").Chain()
  .If("else").Chain()
  .Height(1218).Width(562).Crop("fill").Chain()
  .Gravity("north").Overlay(new Layer().PublicId("iphone_x_notch")).Width(325).Chain()
  .If("end").Chain()
  .Background("#000000").Radius(54)).BuildImageTag("country_sunset.jpg")
Android:
Copy to clipboard
MediaManager.get().url().transformation(new Transformation()
  .if("ar_gt_1").chain()
  .height(562).width(1218).crop("fill").chain()
  .overlay(new Layer().publicId("iphone_x_notch")).width(325).crop("scale").chain()
  .angle(90).chain()
  .angle("hflip").chain()
  .flags("layer_apply").gravity("west").chain()
  .if("else").chain()
  .height(1218).width(562).crop("fill").chain()
  .gravity("north").overlay(new Layer().publicId("iphone_x_notch")).width(325).chain()
  .if("end").chain()
  .background("#000000").radius(54)).generate("country_sunset.jpg");
iOS:
Copy to clipboard
imageView.cldSetImage(cloudinary.createUrl().setTransformation(CLDTransformation()
  .setIf("ar_gt_1").chain()
  .setHeight(562).setWidth(1218).setCrop("fill").chain()
  .setOverlay("iphone_x_notch").setWidth(325).setCrop("scale").chain()
  .setAngle(90).chain()
  .setAngle("hflip").chain()
  .setFlags("layer_apply").setGravity("west").chain()
  .setIf("else").chain()
  .setHeight(1218).setWidth(562).setCrop("fill").chain()
  .setGravity("north").setOverlay("iphone_x_notch").setWidth(325).chain()
  .setIf("end").chain()
  .setBackground("#000000").setRadius(54)).generate("country_sunset.jpg")!, cloudinary: cloudinary)
Test landscape image on iPhone X

Bundle Transformations with Named Transformation

Let’s do one more cool thing, it feels weird to have to write all those transformation parameters for every image to be transformed. Cloudinary offers the named transformation feature which is used to bundle transformation parameter into one single re-usable parameter.

In the transformation panel of the Cloudinary dashboard, a list of all transformations currently delivered by Cloudinary on the current user account can be found. Click the edit link at the bottom of each transformation and use “Save as” to save the transformation with whichever name you choose. I choose “iphonex”. Once saved, on the list of transformations you can find the named transformation listed as iphonex. This “transformation pack” is now available to all images stored and can be applied to our test image with:

Ruby:
Copy to clipboard
cl_image_tag("spencer-watson.jpg", :transformation=>["iphonex"])
PHP v1:
Copy to clipboard
cl_image_tag("spencer-watson.jpg", array("transformation"=>array("iphonex")))
PHP v2:
Copy to clipboard
(new ImageTag('spencer-watson.jpg'))
  ->namedTransformation(NamedTransformation::name('iphonex'));
Python:
Copy to clipboard
CloudinaryImage("spencer-watson.jpg").image(transformation=["iphonex"])
Node.js:
Copy to clipboard
cloudinary.image("spencer-watson.jpg", {transformation: ["iphonex"]})
Java:
Copy to clipboard
cloudinary.url().transformation(new Transformation().named("iphonex")).imageTag("spencer-watson.jpg");
JS:
Copy to clipboard
cloudinary.imageTag('spencer-watson.jpg', {transformation: ["iphonex"]}).toHtml();
jQuery:
Copy to clipboard
$.cloudinary.image("spencer-watson.jpg", {transformation: ["iphonex"]})
React:
Copy to clipboard
<Image publicId="spencer-watson.jpg" >
  <Transformation transformation={["iphonex"]} />
</Image>
Vue.js:
Copy to clipboard
<cld-image publicId="spencer-watson.jpg" >
  <cld-transformation transformation={["iphonex"]} />
</cld-image>
Angular:
Copy to clipboard
<cl-image public-id="spencer-watson.jpg" >
  <cl-transformation transformation={{["iphonex"]}}>
  </cl-transformation>
</cl-image>
.NET:
Copy to clipboard
cloudinary.Api.UrlImgUp.Transform(new Transformation().Named("iphonex")).BuildImageTag("spencer-watson.jpg")
Android:
Copy to clipboard
MediaManager.get().url().transformation(new Transformation().named("iphonex")).generate("spencer-watson.jpg");
iOS:
Copy to clipboard
imageView.cldSetImage(cloudinary.createUrl().setTransformation(CLDTransformation().setNamed("iphonex")).generate("spencer-watson.jpg")!, cloudinary: cloudinary)
iPhone X

Read more on named transformations here and how to implement them here.

Conclusion

Now you have seen how you can transform your images to test how they look on the iPhone X screen. You can try this out with several other images and if you are building a product be sure to test it to see how it looks on the iPhone X. This is just one of an unlimited number of cool things you can do with the Cloudinary image manipulation parameters. Check out the demo here

Recent Blog Posts

Our $2B Valuation

By
Blackstone Growth Invests in Cloudinary

When we started our journey in 2012, we were looking to improve our lives as developers by making it easier for us to handle the arduous tasks of handling images and videos in our code. That initial line of developer code has evolved into a full suite of media experience solutions driven by a mission that gradually revealed itself over the course of the past 10 years: help companies unleash the full potential of their media to create the most engaging visual experiences.

Read more
Direct-to-Consumer E-Commerce Requires Compelling Visual Experiences

When brands like you adopt a direct–to-consumer (DTC) e-commerce approach with no involvement of retailers or marketplaces, you gain direct and timely insight into evolving shopping behaviors. Accordingly, you can accommodate shoppers’ preferences by continually adjusting your product offering and interspersing the shopping journey with moments of excitement and intrigue. Opportunities abound for you to cultivate engaging customer relationships.

Read more
Automatically Translating Videos for an International Audience

No matter your business focus—public service, B2B integration, recruitment—multimedia, in particular video, is remarkably effective in communicating with the audience. Before, making video accessible to diverse viewers involved tasks galore, such as eliciting the service of production studios to manually dub, transcribe, and add subtitles. Those operations were costly and slow, especially for globally destined content.

Read more
Cloudinary Helps Minted Manage Its Image-Generation Pipeline at Scale

Shoppers return time and again to Minted’s global online community of independent artists and designers because they know they can count on unique, statement-making products of the highest quality there. Concurrently, the visual imagery on Minted.com must do justice to the designs into which the creators have poured their hearts and souls. For Minted’s VP of Engineering David Lien, “Because we are a premium brand, we need to ensure that every single one of our product images matches the selected configuration exactly. For example, if you pick an 18x24 art print on blue canvas, we will show that exact combination on the hero images in the PDF.”

Read more
Highlights on ImageCon 2021 and a Preview of ImageCon 2022

New year, same trend! Visual media will continue to play a monumental role in driving online conversions. To keep up with visual-experience trends and best practices, Cloudinary holds an annual conference called ImageCon, a one-of-a-kind event that helps attendees create the most engaging visual experiences possible.

Read more