Skip to content

Commit 581fbe4

Browse files
Merge pull request #112 from image-js/111-modify-supported-formats-table-in-working-with-images
docs: fix and add bmp to a table of supported formats
2 parents f5b1b50 + 6c2b7dd commit 581fbe4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/Basics/Working with Images.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ In the context of digital technology and computing, images are represented as a
1414

1515
- Currently ImageJS supports images with these characteristics:
1616

17-
| | TIFF | JPEG | PNG |
18-
| -------------------------------- | -------------------------- | ---------------------- | ----------------- |
19-
| **Bits per channel** | 8 or 16 bits | 8 bits | 8 or 16 bits |
20-
| **Bits per Alpha** | 8 or 16 bits | N/A | 8 or 16 bits |
21-
| **Compression** | yes/no(may be destructive) | no(may be destructive) | yes |
22-
| **Color Model** | RGB and grayscale | RGB and grayscale | RGB and grayscale |
23-
| **Can be loaded in this format** | ✅ | ✅ | ✅ |
24-
| **Can be saved in this format** | ❌ | ✅ | ✅ |
17+
| | TIFF | JPEG | PNG | BMP |
18+
| -------------------------------- | ---------------- | ------- | ---------------- | -------- |
19+
| **Bits per channel** | 8 or 16 bits | 8 bits | 8 or 16 bits | 1 bit |
20+
| **Alpha channel** | yes | no | yes | no |
21+
| **Lossy compression** | can be either | yes | no | no |
22+
| **Color Model** | RGB or grayscale | RGB | RGB or grayscale | N/A |
23+
| **Can be loaded in this format** | ✅ | ✅ | ✅ | ❌ |
24+
| **Can be saved in this format** | ❌ | ✅ | ✅ | ✅ |
2525

2626
### Image coordinates
2727

0 commit comments

Comments
 (0)