This support forum is no longer in use. Please use the Cloudinary Community at https://community.cloudinary.com/ to receive assistance from other members of the community and from Cloudinary's support team. For account-specific questions or if you believe that you've encountered a bug, please contact the Cloudinary team directly via the "submit a request" option on this support site.

Workflow

Comments

4 comments

  • Avatar
    michael connors

    Fantastic! cloudinary_url is what I was looking for. Thanks

    1
    Comment actions Permalink
  • Avatar
    Maor Gariv

    Hi Michael,

    You can upload using the following method - 

    \Cloudinary\Uploader::upload("my_image.jpg")

     This call returns an array with the `public_id` and the secure URL.

    You can then add transformations to the URL and Cloudinary will perform them on-the-fly.

    For more details, please refer to the PHP image upload guide.

    0
    Comment actions Permalink
  • Avatar
    michael connors

    Thank you for the response, I was able to easily upload, but its not clear how I convert the URL with transforms without using cl_image_tag. Do I just split apart the URL and reconstruct it with the parameters? Also a side question, if I add security for white labeled domains, can I used signed urls outside of white labeled domains? Thank you in advance.

    0
    Comment actions Permalink
  • Avatar
    Maor Gariv

    Hey,

    You can create dynamic transformations (on-the-fly) by simply altering the URL.

    For example, transforming the original uploaded http://res.cloudinary.com/demo/image/upload/sample.jpg image with the "sepia" effect - 

    http://res.cloudinary.com/demo/image/upload/e_sepia/sample.jpg

    You can also construct the url programmatically using the cloudinary_url method - 

    cloudinary_url("sample.jpg", array("width" => 100, "height" => 150, "crop" => "fill"))

    For more information - 

    https://github.com/cloudinary/cloudinary_php

     

    Regarding the security question, please open a support ticket and share some more details about your use-case and we will try to find the most suitable solution for you.

    0
    Comment actions Permalink

Post is closed for comments.