From e2b09ecb866a9bc57fc808e0d121640fbcb15623 Mon Sep 17 00:00:00 2001 From: EscapedGibbon Date: Thu, 4 Sep 2025 08:58:22 +0200 Subject: [PATCH 1/2] docs: remove image demo --- docs/basics/demos/image.demo.tsx | 6 ------ docs/basics/working-with-images.md | 4 ---- 2 files changed, 10 deletions(-) delete mode 100644 docs/basics/demos/image.demo.tsx diff --git a/docs/basics/demos/image.demo.tsx b/docs/basics/demos/image.demo.tsx deleted file mode 100644 index 7a35c53..0000000 --- a/docs/basics/demos/image.demo.tsx +++ /dev/null @@ -1,6 +0,0 @@ -import type { Image } from 'image-js'; - -export default function ImageDemo(image: Image) { - const mask = image.invert(); - return mask; -} diff --git a/docs/basics/working-with-images.md b/docs/basics/working-with-images.md index 400ec15..c9c6516 100644 --- a/docs/basics/working-with-images.md +++ b/docs/basics/working-with-images.md @@ -1,5 +1,3 @@ -import ImageDemo from './demos/image.demo.tsx' - # Working with Images @@ -8,8 +6,6 @@ import ImageDemo from './demos/image.demo.tsx' In the context of digital technology and computing, images are represented as a grid of pixels, with each pixel containing information about color and intensity. - - ### Types of images supported by ImagesJS - Currently ImageJS supports images with these characteristics: From c78854c36ffa1f4dc31027984afb51b8e8fc5acd Mon Sep 17 00:00:00 2001 From: EscapedGibbon Date: Thu, 4 Sep 2025 14:40:11 +0200 Subject: [PATCH 2/2] docs: remove comment --- docs/basics/working-with-images.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/basics/working-with-images.md b/docs/basics/working-with-images.md index c9c6516..6aea935 100644 --- a/docs/basics/working-with-images.md +++ b/docs/basics/working-with-images.md @@ -1,7 +1,5 @@ # Working with Images - - ### What is an Image? In the context of digital technology and computing, images are represented as a grid of pixels, with each pixel containing information about color and intensity.