cloudex icon indicating copy to clipboard operation
cloudex copied to clipboard

An elixir library which helps with uploading image files or urls to cloudinary

Results 18 cloudex issues
Sort by recently updated
recently updated
newest added

Besides other documentation changes, this commit ensures the generated HTML doc for HexDocs.pm will become the source of truth for this Elixir library and leverage on latest features of ExDoc.

Hi 👋🏻 I have this case in my current project so that I have to upload images that are stored as base64 in my DB to Cloudinary. I had to...

Currently the duration for an upload request is limited to hackney's default, which is 5 seconds. This means we're seeing a lot of timeouts for uploading large images (or running...

When passing in a single string, it can only ever return a single result. A list of strings will return a list of results.

Trying to use the phoenix helper snippet I get a compile error: ``` == Compilation error in file lib/my_app_web/views/cloudex_image_helper.ex == ** (CompileError) lib/my_app_web/views/cloudex_image_helper.ex:15: undefined function picture/0 ``` I guess that's...

Fixes #71 . This also matches the duration of the `Task.await` calls throughout the library

Closes #68. This makes sure we have a supervisor as the first process and should be fully backwards compatible. I tested in the project I'm using cloudex in and it...

This is needed in order to take advantage of [eager transformations](https://cloudinary.com/documentation/transformations_on_upload) on image uploads Fixes #52

I haven't been able to upload images using eager transformations. For my application, I just want to resize images to a certain width by default. Cloudinary seems to support this,...

We use cloudex in our phoenix application (it's been very handy, by the way) and a few weeks a go we found a problem trying out phoenix_live_dashboard , more information...