A class that represents the file format used by Amiga Basic to store bitmap graphics: blitter objects and sprites.
Details
Amiga Basic used a specific format to store bitmap images that could be displayed using Basic code. Both sprites and blitter objects can be stored and used. This class is used to represent such files.
See also
Other AmigaBasicShape.operations:
rasterToAmigaBasicShape()
,
read.AmigaBasicShape()
,
write.AmigaBasicShape()
Examples
if (FALSE) {
ball <- read.AmigaBasicShape(system.file("ball.shp", package = "AmigaFFH"))
r_logo <- read.AmigaBasicShape(system.file("r_logo.shp", package = "AmigaFFH"))
plot(ball)
plot(r_logo)
}