From 764d952166e9e1042a630a958d3404c95e949367 Mon Sep 17 00:00:00 2001 From: markpmlim Date: Mon, 17 Sep 2018 14:49:29 +0800 Subject: [PATCH] Specify graphic format more precisely --- ConvertBitMap.playground/Contents.swift | 2 +- Readme.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ConvertBitMap.playground/Contents.swift b/ConvertBitMap.playground/Contents.swift index 3747177..0a396b4 100644 --- a/ConvertBitMap.playground/Contents.swift +++ b/ConvertBitMap.playground/Contents.swift @@ -1,5 +1,5 @@ /* - A simple Playground demo to load an unpacked Apple IIGS Super-Hires graphic file ($C1/$0000) and display it. + A simple Playground demo to load an unpacked Apple IIGS Super-Hires 320x200 graphic file ($C1/$0000) and display it. Written in Swift 3.x Requires XCode 8.x or later. */ diff --git a/Readme.md b/Readme.md index 41aa8a3..c5aac94 100644 --- a/Readme.md +++ b/Readme.md @@ -1,6 +1,6 @@ A simple Playground demonstration on how to -a) load an Apple IIGS graphic file with a file type and auxiliary type of $C1 and $0000, +a) load an Apple IIGS 320x200 graphic file with a file type and auxiliary type of $C1 and $0000, b) extract data from the loaded file and use the information to instantiate a raw bitmap which can be used by macOS to create a CGImage object,