From 340e0297445fdd3c1f4d8de00c598e67ec4e5d92 Mon Sep 17 00:00:00 2001 From: a012 Date: Thu, 23 Apr 2026 22:52:14 -0400 Subject: [PATCH] Update and rename docs/fileBytes.md to docs/developers/fileBytes.md --- docs/{ => developers}/fileBytes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename docs/{ => developers}/fileBytes.md (94%) diff --git a/docs/fileBytes.md b/docs/developers/fileBytes.md similarity index 94% rename from docs/fileBytes.md rename to docs/developers/fileBytes.md index 5c1af3a..04debf4 100644 --- a/docs/fileBytes.md +++ b/docs/developers/fileBytes.md @@ -1,4 +1,4 @@ -## How Many Bytes Does a File Need? +## Bytes for a File To determine how much memory a file requires, you need to consider its contents. For example, in a text file, the size is determined by the number of characters (including spaces and punctuation). Each character typically requires one or more bytes of storage. For other types of files, like images, the calculation is different. For an image on a 160x120 pixel screen, the total memory needed would be the total number of pixels (160 * 120) multiplied by the number of bytes required to store the color of each pixel (which depends on the bits per pixel, or BPP).