AuburnSounds / gamut

Image encoding and decoding library for D. Detailed layout control. Experimental codec QOIX.
Boost Software License 1.0
41 stars 2 forks source link

Throwing between in GC programs is annoying #66

Open p0nce opened 11 months ago

p0nce commented 11 months ago

Simplify these patterns:

if (!img.isValid)
    throw new Exception(img.errorMessage().idup);

Also this pattern is wrong! No error message on saving files.

if (!image.saveToFile("path.ext"))
    throw new Exception(img.errorMessage().idup);