UNPKG

pgs.js

Version:

PGS (Presentation Graphic Stream) Subtitle For HTML5 Media Playback

13 lines (10 loc) 589 B
import { DecodedObjectDefinitionSegment, ObjectDefinitionSegment, PaletteDefinitionSegment } from "../../pgs/type"; export default (palette: PaletteDefinitionSegment, object: ObjectDefinitionSegment[] | DecodedObjectDefinitionSegment | null): ImageData | null => { if (object == null) { return null; } if (!Array.isArray(object)) { return new ImageData(object.rgba, object.width, object.height); } const result = DecodedObjectDefinitionSegment.from(palette, object); if (result == null) { return null; } return new ImageData(result.rgba, result.width, result.height); };