Skip to content

MediaTransformationResult

Defined in: node_modules/.pnpm/@cloudflare+workers-types@4.20251118.0/node_modules/@cloudflare/workers-types/index.ts:9011

Result of a media transformation operation. Provides multiple ways to access the transformed media content.

contentType(): string

Defined in: node_modules/.pnpm/@cloudflare+workers-types@4.20251118.0/node_modules/@cloudflare/workers-types/index.ts:9026

Returns the MIME type of the transformed media.

string

The content type string (e.g., ‘image/jpeg’, ‘video/mp4’)


media(): ReadableStream<Uint8Array<ArrayBufferLike>>

Defined in: node_modules/.pnpm/@cloudflare+workers-types@4.20251118.0/node_modules/@cloudflare/workers-types/index.ts:9016

Returns the transformed media as a readable stream of bytes.

ReadableStream<Uint8Array<ArrayBufferLike>>

A stream containing the transformed media data


response(): Response

Defined in: node_modules/.pnpm/@cloudflare+workers-types@4.20251118.0/node_modules/@cloudflare/workers-types/index.ts:9021

Returns the transformed media as an HTTP response object.

Response

The transformed media as a Response, ready to store in cache or return to users