interlinked/source/2022-03-08.ts

44 lines
799 B
TypeScript
Raw Normal View History

import {
Crop,
Generic,
FocusBlur,
Newsprint,
StereographicProjection,
} from './gegl/exports.js';
2022-03-08 12:13:23 +00:00
import Project from './project.js';
const [width, height] = [1920, 1080];
const project: Project = {
createInputImage: false,
2022-03-08 12:13:23 +00:00
name: '2022-03-08',
operations: [
new Generic('gegl:diffraction-patterns', {
height,
width,
}),
new Crop({height, width}),
new Generic('gegl:tile-seamless'),
new StereographicProjection(),
2022-03-08 12:13:23 +00:00
new Newsprint({
colorModel: 'cmyk',
period: 4,
}),
new FocusBlur({
2022-03-08 12:13:23 +00:00
blurRadius: 9.72,
blurType: 'lens',
focus: 0,
highlightFactor: 0.924,
radius: 1.173,
shape: 'circle',
}),
],
resetAlpha: false,
2022-03-08 12:13:23 +00:00
resolution: {
width,
height,
},
};
export default project;