From 3996272ceca380f97aa0818ae085927fcdc689fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20P=2E?= Date: Thu, 10 Oct 2024 08:03:51 +0200 Subject: [PATCH] ...and fix the example... --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 54aa072..31c1a4c 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,7 @@ declare(strict_types=1); use Dumbastro\FitsPhp\Fits; use Dumbastro\FitsPhp\FitsHeader; +use Dumbastro\FitsPhp\ImageBlob; $fits = new Fits('bubble_nebula.fit'); // Bit-depth is 32-bit unsigned (for example) $fitsHeader = new FitsHeader($fits->headerBlock); @@ -73,6 +74,6 @@ echo $blob->bitpix->type(); //int32 - [x] Read keywords from the FITS header - [x] Separate the main data table (actual image data) from the header (partly done? Who knows...) -- [] Actually display the image in the standard output -- [] Save the image to PNG and JPG -- [] Manipulate the bits using basic processing algorithms?? +- [ ] Actually display the image in the standard output +- [ ] Save the image to PNG and JPG +- [ ] Manipulate the bits using basic processing algorithms??