Key Takeaways
- Raster (raster graphics) are made up of a grid of pixels; this is the core definition of raster images
- Raster images are resolution-dependent (their quality changes when resized)
- Vector images are resolution-independent (unlike raster), shown in the comparison definition
- The term “raster” is used in radar/remote-sensing to describe gridded data (cells) representing spatial quantities
- Esri describes each cell in a raster has a value representing a measurement or category
- In ArcGIS, raster cell size (spatial resolution) defines the ground distance represented by each cell
- Microsoft DirectX documents that a texture uses width, height, and format to represent raster data in GPU memory
- OpenGL specifies that a framebuffer can have a color attachment representing raster image data
- OpenGL ES specifies texture dimensions include width and height for 2D textures (raster textures)
- PNG uses DEFLATE (LZ77 + Huffman coding) for compression (lossless raster compression)
- PNG uses zlib compression format (which wraps DEFLATE)
- JPEG uses DCT-based lossy compression
- In general, raster images in web development are often served as PNG/JPEG/WebP; WebP is designed to reduce file sizes compared to PNG/JPEG (performance claims)
- Lighthouse audits report image size impact; typical “Serve images in next-gen formats” suggests using WebP/AVIF (measurable guidance)
- Web.dev’s guidance for “Serve images in next-gen formats” cites that next-gen formats can have significantly smaller file sizes than PNG/JPEG
Raster images are pixel grids, resolution-dependent, stored per pixel, compressed variably.
Raster basics (definition & concepts)
Raster basics (definition & concepts) Interpretation
Raster in GIS & remote sensing
Raster in GIS & remote sensing Interpretation
Raster rendering & GPUs
Raster rendering & GPUs Interpretation
Raster compression & formats
Raster compression & formats Interpretation
Market/use & measurable impacts
Market/use & measurable impacts Interpretation
How We Rate Confidence
Every statistic is queried across four AI models (ChatGPT, Claude, Gemini, Perplexity). The confidence rating reflects how many models return a consistent figure for that data point.
Only one AI model returns this statistic from its training data. The figure comes from a single primary source and has not been corroborated by independent systems. Use with caution; cross-reference before citing.
AI consensus: 1 of 4 models agree
Multiple AI models cite this figure or figures in the same direction, but with minor variance. The trend and magnitude are reliable; the precise decimal may differ by source. Suitable for directional analysis.
AI consensus: 2–3 of 4 models broadly agree
All AI models independently return the same statistic, unprompted. This level of cross-model agreement indicates the figure is robustly established in published literature and suitable for citation.
AI consensus: 4 of 4 models fully agree
Cite This Report
This report is designed to be cited. We maintain stable URLs and versioned verification dates. Copy the format appropriate for your publication below.
Marcus Engström. (2026, February 13). Raster Statistics. Gitnux. https://gitnux.org/raster-statistics
Marcus Engström. "Raster Statistics." Gitnux, 13 Feb 2026, https://gitnux.org/raster-statistics.
Marcus Engström. 2026. "Raster Statistics." Gitnux. https://gitnux.org/raster-statistics.
References
- 1adobe.com/creativecloud/learn/photography/raster-vs-vector.html
- 2en.wikipedia.org/wiki/Bitmap
- 3en.wikipedia.org/wiki/Raster_graphics
- 4en.wikipedia.org/wiki/Pixel_density
- 5en.wikipedia.org/wiki/Display_resolution
- 6en.wikipedia.org/wiki/Pixel
- 7en.wikipedia.org/wiki/RGB_color_model
- 8en.wikipedia.org/wiki/8-bit_color
- 9en.wikipedia.org/wiki/Color_depth
- 10en.wikipedia.org/wiki/Grayscale
- 12en.wikipedia.org/wiki/JPEG
- 13en.wikipedia.org/wiki/GIF
- 14en.wikipedia.org/wiki/BMP_file_format
- 15en.wikipedia.org/wiki/TIFF
- 16en.wikipedia.org/wiki/Aliasing_(signal_processing)
- 17en.wikipedia.org/wiki/Nyquist%E2%80%93Shannon_sampling_theorem
- 18en.wikipedia.org/wiki/Downsampling
- 19en.wikipedia.org/wiki/Upsampling
- 20en.wikipedia.org/wiki/Nearest-neighbor_interpolation
- 21en.wikipedia.org/wiki/Bilinear_interpolation
- 22en.wikipedia.org/wiki/Bicubic_interpolation
- 23en.wikipedia.org/wiki/Lanczos_resampling
- 24en.wikipedia.org/wiki/Demosaicing
- 25en.wikipedia.org/wiki/Bayer_filter
- 26en.wikipedia.org/wiki/Image_compression#Transform_coding
- 27en.wikipedia.org/wiki/DEFLATE
- 28en.wikipedia.org/wiki/Alpha_compositing
- 29en.wikipedia.org/wiki/Raster_scan
- 30en.wikipedia.org/wiki/Frame_buffer
- 54en.wikipedia.org/wiki/Discrete_cosine_transform#JPEG_image_compression
- 59en.wikipedia.org/wiki/Quantization_(image_processing)
- 70en.wikipedia.org/wiki/JPEG#Quantization
- 71en.wikipedia.org/wiki/Lempel%E2%80%93Ziv%E2%80%93Welch
- 74en.wikipedia.org/wiki/JPEG#Restart_markers
- 75en.wikipedia.org/wiki/JPEG#Entropy_coding
- 76en.wikipedia.org/wiki/PNG#Interlacing
- 77en.wikipedia.org/wiki/JPEG#Progressive_JPEG
- 80en.wikipedia.org/wiki/Quantization_table
- 11w3.org/TR/PNG/
- 58w3.org/Graphics/Color/sRGB.html
- 31desktop.arcgis.com/en/arcmap/10.3/manage-data/raster-and-tiled-data/what-is-a-raster.htm
- 32desktop.arcgis.com/en/arcmap/10.3/manage-data/raster-and-tiled-data/raster-data-model.htm
- 33gdal.org/user/raster_data_model.html
- 34ogc.org/standard/geotiff/
- 35sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-2-msi/resolutions
- 36sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-2-msi/satellite-details
- 37sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-1-sar/product-types
- 42sentinels.copernicus.eu/web/sentinel/missions/sentinel-2
- 38usgs.gov/landsat-missions/landsat-8/landsat-8-data-collections
- 43usgs.gov/landsat-missions/landsat-8
- 39modis.gsfc.nasa.gov/about/
- 40nasa.gov/mission/viiirs/
- 41planet.com/resources/worldview-3/
- 44www2.jpl.nasa.gov/srtm/
- 45land.copernicus.eu/imagery-in-situ/eu-dem/eu-dem-v1/
- 46data.giss.nasa.gov/gistemp/ (see “How GISS surface temperature is calculated”)
- 47learn.microsoft.com/en-us/windows/win32/direct3ddxgi/texture-arrays
- 68learn.microsoft.com/en-us/windows/win32/direct2d/bitmaps
- 103learn.microsoft.com/en-us/windows/win32/wic/-wic--maximum-image-size
- 48registry.khronos.org/OpenGL/specs/gl/glspec45.pdf
- 49registry.khronos.org/OpenGL-Refpages/es2.0/xhtml/glTexImage2D.xml
- 50registry.khronos.org/OpenGL-Refpages/gl4/html/glTexImage2D.xhtml
- 51registry.khronos.org/vulkan/specs/1.3-extensions/html/chapters/resources.html
- 52registry.khronos.org/vulkan/specs/1.3-extensions/html/chapters/formats.html
- 53developer.mozilla.org/en-US/docs/Web/API/WebGLRenderingContext/texImage2D
- 65developer.mozilla.org/en-US/docs/Web/CSS/image-rendering
- 67developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/drawImage
- 89developer.mozilla.org/en-US/docs/Learn/Performance/Multimedia
- 55libjpeg.sourceforge.net/
- 56openexr.com/documentation/
- 57openexr.com/documentation/ (Half float definition page)
- 60developers.google.com/speed/webp/docs/riff_container
- 61developers.google.com/speed/webp/docs/precompiled
- 72developers.google.com/speed/webp/docs/webp
- 81developers.google.com/speed/webp/docs/api#encode
- 84developers.google.com/speed/webp/docs/performance
- 100developers.google.com/speed/webp/docs/comparison
- 101developers.google.com/speed/webp/docs/alpha
- 105developers.google.com/speed/webp/docs/api#lossy
- 106developers.google.com/speed/webp/docs/api#lossless
- 62aomediacodec.org/av1-avif/
- 63rfc-editor.org/rfc/rfc8920 (HEIF/AVIF background references)
- 79rfc-editor.org/rfc/rfc1951
- 64imagemagick.org/script/command-line-options.php#filter
- 83imagemagick.org/script/command-line-processing.php#strip
- 66html.spec.whatwg.org/multipage/canvas.html
- 69iso.org/standard/54920.html (JPEG/MPEG reference) or https://en.wikipedia.org/wiki/JPEG
- 73awaresystems.be/imaging/tiff/tifftags/compression.html
- 78awaresystems.be/imaging/tiff/tifftags/predictor.html
- 82github.com/AOMediaCodec/avif
- 85web.dev/uses-images-in-next-gen-formats/
- 90web.dev/uses-optimized-images/
- 92web.dev/fast/
- 96web.dev/lighthouse-performance-best-practices/
- 97web.dev/lcp/
- 98web.dev/cls/
- 99web.dev/inp/
- 86httparchive.org/reports/state-of-javascript (image formats section)
- 87httparchive.org/reports/state-of-image-optimization
- 91httparchive.org/reports/images
- 88w3techs.com/technologies/overview/graphics_format
- 93akamai.com/state-of-the-internet
- 94radar.cloudflare.com/speed
- 95developer.chrome.com/docs/crux/
- 102wiki.openstreetmap.org/wiki/Slippy_map_tilenames
- 104jpeg.org/jpegxl/faq.html






