25 lines
636 B
Plaintext
Executable File
25 lines
636 B
Plaintext
Executable File
curl -X POST --location "https://api.claid.ai/v1-beta1/image/edit" --http1.1 \
|
|
-H "Authorization: Bearer 36d8624a99dd4ff2b9bddb7f52c48a15" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{
|
|
"input": "./blah.png",
|
|
"operations": {
|
|
"resizing": {
|
|
"width": 200,
|
|
"height": 200,
|
|
"fit": "bounds"
|
|
},
|
|
"adjustments": {
|
|
"hdr": 60,
|
|
"sharpness": 40
|
|
}
|
|
},
|
|
"output": {
|
|
"format": {
|
|
"type": "png",
|
|
"quality": 90
|
|
}
|
|
}
|
|
}'
|
|
|