Gitiles
Code Review
Sign In
realtimeroboticsgroup.org
/
RealtimeRoboticsGroup
/
test
/
79bd3dbedf45fa8d6054d0de9488d198c9b18f5f
/
.
/
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