-
Upload Widget on Android 14 doesn't allow Camera if clientAllowedFormats: 'image'
I am using the Upload Widget in a normal web page (no web-view app or anything like that). As per title, the Widget on Android 13 and older works fine. However on Android 14, if I pass clientAllowedFormats: 'image' to exclude videos, then I do not have the usual Camera option after tapping "My files". I only get a list of…
-
upload path
I am tryin to get an image upload to Cloudinary. The following code is what I am using: foreach (var file in args.Files) { var path = @"https://res.cloudinary.com/dtm6vdbf7/image/upload/" + file.FileInfo.Name; FileStream filestream = new FileStream(path, FileMode.Create, FileAccess.Write); await…
-
Where i can get more information about 'create_video' endpoint?
I tried to create a video from a set of images following the instructions from . but only movement and change pacity are described there. I need to change scaling, rotate images etc. Wherre can i get more information about paramiters of jsonManifest? Maybe get more examples… And what is the approximate release date of this…
-
Preserve multiple AI transformations
Hello, I have a NextJS application and I use the CldUploadWidget to upload images and the CldImage component to apply transformations. What I'm trying to do is the following: 1. The user uploads an image with a guy with black shirt and black hat. 2. Applies transformation to recolor the shirt to be white with the recolor…
-
Use file format in conditionnal transformation (p.ex: f_svg/fl_sanitize if source is svg)
Is it possible to apply a specific transformation only if the image source is a given format. My goal is to apply special transformation if source is an svg and another transformation if file source is not an svg if svg : /fl_sanitize/f_svg else /w_400,h_400,c_fit/q_auto I alreay check documentation here
-
I am facing cors issue and i am sure it is about cloudinary, the error is:Access to fetch at 'https:
import express from 'express'; import mongoose from 'mongoose'; import cors from 'cors'; import Article from './Schema/Article.js' const app = express(); import fileUpload from 'express-fileupload'; import { v2 as cloudinary } from 'cloudinary'; import { config as dotenvConfig } from 'dotenv'; dotenvConfig(); // Configure…
-
Picture turns on 90 degrees after I upload it from Strapi
I use Strapi for CMS and I want to save my pictures in Cloudinary. I have a preset in Cloudinary - a set of different characteristics that I want to apply to a photo before saving it. If I upload a photo directly to the Cloudinari library, the preset is applied. If I upload a photo from Strapi, in the metadata of which the…
-
How can I upload larger images?
I seem to be having trouble uploading any images > 1MB. For example the image at the below URL. I am using the ruby gem and am not able to get this to work even when I use the upload_large method or add a timeout. I consistently get the error: CloudinaryException: Error in loading…
-
Need some more help with displacement map.
Sorry for another thread but i did not understand what i did wrong in previous tries. This time i have a very simple thing. All i want help is placing the same size label into the displacement map of same size, feel free to resize the label if that's what it takes to make it work.…
-
Need some help with displacement effect.
Need some help, trying to get this displacement working, but unable to do so. I made the displacement map put it but for some reason the map is distorted. The background i need - https://res.cloudinary.com/dkaxmhco0/image/upload/v1716311455/main_background.jpg the label that needs to be cropped and added to the main…
-
About image retrieval
I am building Ai image saas platform where I am using cloudinary when I transformed the image it is not shown in home section named as recent images
-
Upload webm as mp3
We're making a chat application in Flutter that features voice recording. On the web client, the files are encoded as webm and those are not supported for playback on iOS. I guess I can use the transformation tools to re encode the webm to mp3 on download - but this is probably not optimal, is there a way to automatically…
-
Is there a way to crop custom coordinates using the React/NextJS SDK?
Hi! We use the nextJS component for displaying cloudinary images which works great. We want to build in the ability for admins to crop and move images around for profile pictures, which gives us a "zoom/scale" value and an x/y coordinate. It looks like both are supported via API, but not clear how we'd do this in our react…
-
Trying to overlay PNG images and I am wrong somewhere...
Long story short, I am trying to make a review system where I can overlay PNG's to make custom charts. Here are some examples of the direct URLs: https://res.cloudinary.com/dlxzju4kg/image/upload/botanist/3Heat.png https://res.cloudinary.com/dlxzju4kg/image/upload/botanist/1Spice.png…
-
How can I upscale images programmatically without restriction to image size for my nextjs project?
I am building an AI image and video editing web app using nextjs. Based on the AI image feature I would like the cloudinary api upscale feature to upscale any images irrespective of the image size. How do I achieve that? Here is the cloudinary api uspscale feature code am using in my project "import { upscale } from…