Skip to content
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/content/docs/images/pricing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,26 @@ Unique transformations are counted over a 30-day sliding window. For example, if

The `format` parameter counts as only 1 billable transformation, even if multiple copies of an image are served. In other words, if `width=100,format=auto/thumbnail.jpg` is served to some users as AVIF and to others as WebP, then this counts as 1 unique transformation instead of 2.

#### Example

If you serve 2,000 remote images in five different sizes each month, then this results in 10,000 unique transformations. Your estimated cost for the month would be:

| |Usage |Included |Billable quantity |Price |
|-----------------------|-----------------------|-----------------------|-------------------------|-------------------------|
|Transformations |(2,000 original images) × (5 sizes) = 10,000 unique transformations |5,000 |5,000 |$2.50 |

If you use [R2](/r2/) for storage, then your estimated monthly costs will be the sum of your monthly Images costs and monthly [R2 costs](/r2/pricing/#storage-usage).

For example, if you upload 5,000 images to R2 with an average size of 5 MB, and serve 2,000 of those images in five different sizes, then your estimated cost for the month would be:

| |Usage |Included |Billable quantity |Price |
|-----------------------|-----------------------|-----------------------|-------------------------|-------------------------|
|Storage |(5,000 objects) × (5 MB per object) = 25 GB |10 GB |15 GB |$0.22 |
|Class A operations |(5,000 objects) × (1 write per object) = 5,000 writes |1 million |0 |$0.00 |
|Class A operations |(2,000 objects) × (5 reads per object) = 10,000 reads |10 million |0 |$0.00 |
|Transformations |(2,000 original images) × (5 sizes) = 10,000 unique transformations |5,000 | 5,000 | $2.50 |
|**Total** | |||**$2.72** |

### Images Stored

Storage in Images is available only with an Images Paid plan. You can purchase storage in increments of $5 for every 100,000 images stored per month.
Expand Down
Loading