Skip to content

Commit aaa88f8

Browse files
dcpenapatriciasantaana
authored andcommitted
[Images] Webhooks and saturation parameter (#17742)
* Added saturation parameter * Added configure webhooks & added links * Apply suggestions from code review Co-authored-by: Patricia Santa Ana <[email protected]> --------- Co-authored-by: Patricia Santa Ana <[email protected]>
1 parent 70f81ce commit aaa88f8

File tree

5 files changed

+50
-1
lines changed

5 files changed

+50
-1
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
pcx_content_type: how-to
3+
title: Configure webhooks
4+
---
5+
6+
You can set up webhooks to receive notifications about your upload workflow. This will send an HTTP POST request to a specified endpoint when an image either successfully uploads or fails to upload.
7+
8+
Currently, webhooks are supported only for [direct creator uploads](/images/upload-images/direct-creator-upload/).
9+
10+
To receive notifications for direct creator uploads:
11+
12+
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login) and select your account.
13+
2. Go to **Notifications** > **Destinations**.
14+
3. From the Webhooks card, select **Create**.
15+
4. Enter information for your webhook and select **Save and Test**. The new webhook will appear in the **Webhooks** card and can be attached to notifications.
16+
5. Next, go to **Notifications** > **All Notifications** and select **Add**.
17+
6. Under the list of products, locate **Images** and select **Select**.
18+
7. Give your notification a name and optional description.
19+
8. Under the **Webhooks** field, select the webhook that you recently created.
20+
9. Select **Save**.

src/content/docs/images/transform-images/transform-via-url.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,10 @@ You must specify at least one option. Options are comma-separated (spaces are no
111111

112112
<Render file="rotate" />
113113

114+
### `saturation`
115+
116+
<Render file="saturation" />
117+
114118
### `sharpen`
115119

116120
<Render file="sharpen" />

src/content/docs/images/transform-images/transform-via-workers.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ The `fetch()` function accepts parameters in the second argument inside the `{cf
9898

9999
<Render file="rotate" />
100100

101+
### `saturation`
102+
103+
<Render file="saturation" />
104+
101105
### `sharpen`
102106

103107
<Render file="sharpen" />

src/content/docs/images/upload-images/direct-creator-upload.mdx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
---
22
pcx_content_type: how-to
3-
title: Accept direct creator uploads
3+
title: Direct creator uploads
44
sidebar:
55
order: 5
66

77
---
88

99
The Direct Creator Upload feature in Cloudflare Images lets your users upload images with a one-time upload URL without exposing your API key or token to the client. Using a direct creator upload also eliminates the need for an intermediary storage bucket and the storage/egress costs associated with it.
1010

11+
You can set up [webhooks](/images/manage-images/configure-webhooks/) to receive notifications on your direct creator upload workflow.
12+
1113
## Request a one-time upload URL
1214

1315
Make a `POST` request to the `direct_upload` endpoint using the example below as reference.
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
{}
3+
---
4+
import { Tabs, TabItem } from "~/components"
5+
6+
Increases saturation by a factor. A value of `1.0` equals no change, a value of `0.5` equals half saturation, and a value of `2.0` equals twice as saturated. `0` is ignored.
7+
8+
<Tabs>
9+
<TabItem label="URL format">
10+
```js
11+
saturation=0.5
12+
```
13+
</TabItem>
14+
<TabItem label="Workers">
15+
```js
16+
cf: {image: {saturation: 0.5}}
17+
```
18+
</TabItem>
19+
</Tabs>

0 commit comments

Comments
 (0)