image-in-browser
Version:
Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)
37 lines (36 loc) • 720 B
TypeScript
/** @format */
/**
* Represents the header of a VP8 picture.
*/
export declare class VP8PictureHeader {
/**
* The width of the picture in pixels.
* @type {number}
*/
width: number;
/**
* The height of the picture in pixels.
* @type {number}
*/
height: number;
/**
* The horizontal scaling factor.
* @type {number}
*/
xscale: number;
/**
* The vertical scaling factor.
* @type {number}
*/
yscale: number;
/**
* The color space of the picture. 0 represents YCbCr.
* @type {number}
*/
colorspace: number;
/**
* The clamp type of the picture.
* @type {number}
*/
clampType: number;
}