.NET
image.asc
Associated article: Image Processing and Visual Basic
Tags: Database .NET
_Image Processing and Visual Basic_
by Don Parrish
Example 1:
Open Path$ For Binary As #1
Datarray$ = Input$(31680, #1)
Workarray$=Datarray$
Close
Example 2:
Open Path$ For Binary As #1
For Line = 1 To 165
For Point = 1 To 192
Position = Point + (Line - 1) * 192
Datarray$(Position) = INPUT(1,#1)
Next Point
...


