loadAPNG - multiple declarations

Function loadAPNG

Load animated PNG (APNG) from file using local FileSystem. Causes GC allocation

SuperAnimatedImage loadAPNG (
  string filename
);

Function loadAPNG

Load animated PNG (APNG) from stream using default animated image factory. Causes GC allocation

SuperAnimatedImage loadAPNG (
  InputStream istrm
);

Function loadAPNG

Load animated PNG (APNG) from stream using specified image factory. GC-free

Compound!(dlib.image.animation.SuperAnimatedImage,string) loadAPNG (
  InputStream istrm,
  SuperImageFactory imgFac
);