Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
1a6590db385be2bc6b1753f1b8fb8b726548e803
/
.
/
vision
/
bmp_stream
/
bmp.rb
blob: 122c9de35a80e2b24d4b9e959a58aa5cc700b7d3 [
file
] [
log
] [
blame
]
class
BMPHeader
def
initialize
(
width
,
height
)
@width
=
width
@height
=
height
end
def
text
()
size
=
@width
*
@height
*
3
return
[
"BM"
,
size
+
54
,
"\0\0\0\0"
,
54
,
40
,
@width
,
@height
,
1
,
24
,
0
,
size
,
2835
,
2835
,
0
,
0
].
pack
(
"a2Ia4IIIIssIIIIII"
)
end
end