-
A heartfelt thank you to our community
Hi everyone, I wanted to take a moment to share some important news with you all. After much consideration, we’ve made the decision to retire this community at the end of December. With the incredible advancements in AI-driven tools and the exceptional support resources we provide, we’ve realized the Community no longer…
-
Cloudinary Community Standards: Please Read Before Posting
Welcome! We are so glad you're here. But before you get started, here are some things you need to know. This community has a set of standards across all our online spaces. They include (but are not limited to) the following principles and rules: Respect Our community members come from all over the planet and walks of life.…
-
How to use axios to upload image with signature.
** solved ** I solved it by removing key 'source' from object ```javascript const { signature, timestamp } = ( res.body as { data: { signature: string; timestamp: string } } ).data; const filePath = resolve(__dirname, "pic.png"); console.log(filePath); const formData = new FormData(); formData.append("file",…
-
Generating Signed URLs for Private Images – Best Approach?
Hi everyone, I’m working with private images that should only be accessible to logged-in users. I know that Cloudinary allows generating signed URLs, but I’m not sure what the best practice is for setting expiration times and ensuring security. Should I generate a new signed URL for each request, or cache them for a short…
-
Why are my files uploaded to format N/A ? (except for images and pdf)
Hello, I've had a situation for a while now where my uploads don't work correctly. I'm developping an app with Rails 7 and use cloudinary for storing files attached to my tickets. storage.yml development & production.rb In Cloudinary, I've allowed raw files. Example : I just tried uploading an excel file (test.xlsx). Logs…
-
Issue of read the generated image URL
I am using the java sdk and generated an uploaded image URL, but when I tried to read the generated image URL, it did not work. I used Spring webflux `WebClient` to read data from the image URL. return webClientBuilder.baseUrl(generatedUrl).build() .get() .awaitExchange { it.awaitBody<ByteArray>() } it throws a timeout or…
-
Caching plugins
Hi I am going to use cloudinary on my wordpress site, I am currently using WP Rocket and imagify on it for caching and image compression, should I change the settings on the software or will cloudinary work alongside these plugins?
-
I have been experiencing intermittent failures when uploading large images.
-
Issue with auto upload and authentication
I have set up an auto upload folder. Then I used it with an image (example: https://res.cloudinary.com/account_id/image/upload/autoupload_folder/material.jpg ) and 1) The image was uploaded correctly, I can see the asset in the media library 2) But the url won't respond; it gives the following error: "Resource can only be…
-
Polyfill errors with legacy cloudinary object
Hello! Having major problems since updating a few npm packages and nodeJS. This was my previous working code: import { Cloudinary } from "@cloudinary/url-gen"; require('dotenv').config(); const cloudinary = require('cloudinary/lib-es5/cloudinary'); cloudinary.config({ cloud_name: 'BLABLA', api_key:…
-
Background removal and handling the 423 response
I'm used to Cloudinary taking a few seconds to respond on the first request to a transformed image, but in testing background removal, I'm seeing that the default is to return 423 on the first response? If I wanted to programatically download the result, is the expectation to make 2 requests?
-
Difficulty with Image Upload Failures – Are There Any External Tools That Can Help?
Hi Cloudinary Community, I’ve been experiencing intermittent failures when uploading images to Cloudinary, particularly with larger files. I’ve ensured that my API keys and configurations are correct, and I’ve followed best practices regarding the upload process. However, the issue persists and seems to be affecting the…
-
What’s the Best Way to Use Dynamic Image Transformations for Mobile Devices?
Hi all I’m looking for suggestions on how to optimize dynamic image transformations specifically for mobile devices. Are there certain settings or best practices that help ensure fast loading times and smooth performance on smaller screens? Because, I am a concrete Contractor in Richmond VA here is my website:…
-
How to Optimize Dynamic Image Transformations Without Affecting Performance?
Hi everyone, I’ve been trying to implement dynamic transformations for images based on user interactions. For example, adjusting image quality or adding effects dynamically depending on specific user actions. The challenge I’m facing is maintaining seamless performance and ensuring compatibility across various devices…
-
File size exceeds maximum allowed (20 MB)
Hello guys, we are on Cloudinary Programmable Media Plus Plan and we tried to upload a PDF document which has a file size of 60 MB through the Cloudinary Upload widget in the media library. But the upload widget shows the error "File size (63.02 MB) exceeds maximum allowed (20 MB)" Is there any chance to increase the…
-
Why Does Changing the Signature Still Allow Access to My Private HLS on Cloudinary?
I’m new here and need some help with securing video links on Cloudinary. I’m using Python to upload a video as private and also setting up strict transformations, but changing the signature in the URL still allows access. Here’s what I’m doing: Enable Strict Transformations in the Cloudinary Settings → Security tab. Create…
-
Transparency of base image with overlays
Hey there, I have an issue I'm struggling with for some time. I have a base image with a bounding box which is transparent which will contain an overlay: The image below is a desired outcome. (please ignore the glare) This is what I currently have The problem is that the overlaid image in the center covers parts of both…