DES in Electronic Code Book (ECB) mode is a particularly poor choice of cryptography for image files. This is because ECB mode implements a look up table between the unencrypted value and the encrypted value. This results in a known input value turning into the same output value over and over. This can have some interesting blurring effects, but wont obscure the image contents. An example will help this make more sense — the first figure is the logo for the company I am currently working for. I took this image, and ran it through some DES ECB code and produced the second figure.
You can see that whilst the image has certainly changed, the contents of the image has not really been obscured.
We should note that ECB mode is not commonly used anyway. If you use something like PGP or blowfish, then you should be much happier…