Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const screen = blessed.screen({
- smartCSR: true,
- });
- const imageContainer = blessed.box({
- parent: screen,
- left: 'center',
- top: 'center',
- width: '100%',
- height: '100%',
- content: '',
- });
- const png = blessed.image({
- parent: imageContainer,
- top: 0,
- scale: 0.1,
- left: 0,
- width: 100,
- height: 100,
- file: './test-image.png',
- search: false,
- });
- screen.key('q', function() {
- return screen.destroy();
- });
- screen.render();
Advertisement
Add Comment
Please, Sign In to add comment