You should get into the habit of calling binmode
when you open a binary file. This will make your program portable to
systems that might (un)helpfully translate bytes in your binary file
into something unusable.
You may specify the I/O layers when you open a
filehandle, rather than using binmode after the
fact:
open(FH, "< :raw", $filename); # binary mode
Specify the default set of layers for all subsequently opened input
and output filehandles with the open pragma:
use open IN => ":raw"; # binary files