Exemple #1
0
 //make images and save paths here for it
 public GifFrame(int dur, Image image, string name, string newPath, int frame)
 {
     this.FDuration  = dur;
     this.FImage     = image;
     this.Frame      = frame;
     this.FImagePath = newPath + name + "_" + frame + ".png";
     FImage.Save(FImagePath, ImageFormat.Png);
     ;
 }