Capítulo 620 de 988
_Part of the @remotion/effects package.
export const MyComp: React.FC = () => {
return (
<AbsoluteFill>
<CanvasImage
src={staticFile('image.png')}
width={1280}
height={720}
fit="cover"
effects={[
thermalVision({
amount: 1,
palette: [
'#020617',
'#1238ff',
'#00a6ff',
'#00c853',
'#d6f542',
'#ffb000',
'#ff2f00',
'#ffffff',
],
}),
]}
/>
</AbsoluteFill>
);
};