Description
"illu10_no_preview.eps", "illu10_preview.eps", "illuCS6_no_preview.eps", and "illuCS6_preview.eps" all contain one line that is longer than 255 characters, which is the maximum limit according to the specification.
Page 13:
EPS files must not have lines of ASCII text that exceed 255 characters, excluding line-termination characters.
Page 25:
The hexadecimal lines must never exceed 255 bytes in length. In cases where the preview is very wide, the lines must be broken. The line breaks can be made at any even number of hex digits, because the dimensions of the finished preview are established by the width, height, and depth values.
The four image files appear to be nearly the same, and have the same long line:
Pillow/Tests/images/illu10_no_preview.eps
Line 7995 in 50f7888
It looks like 

, an HTML encoded line feed, was added to this file instead of an actual line feed. Replacing 

with \n
allowed the files to load in my branch (I'm testing some changes to the EPS plugin).
The two "*_preview.eps" files also have a line that is longer than 255 characters at the end, but it looks like binary data so I think that's valid.
Currently the code only checks the line length for lines in the header, and lines after the header that start with a %
. Since these test files came from the wild, we probably want to allow files like this, but I thought I'd at least document it.