我试图将二进制数据输出到stdout(使用Kemal提供一些动态二进制数据)。
这是一个测试:
size = File.size( "./img.png" )
slice = Slice( UInt8 ).new( size )
File.open( "./img.png" ) do |file|
file.read_fully( slice )
end
我尝试没有成功:
slice
slice.hexdump
slice.hexstring
slice.to_a
slice.to_s
slice.to_unsafe.value