Example #1
0
 public void ImportFile(string srcFile, string targetName, string targetDir)
 {
     string[] output = this.GetOutputFiles(srcFile, targetName, targetDir);
     PixelData pixelData = LoadPixelData(srcFile);
     Pixmap res = new Pixmap(pixelData);
     res.SourcePath = srcFile;
     res.Save(output[0]);
 }
Example #2
0
 public void ImportFile(string srcFile, string targetName, string targetDir)
 {
     string[] output = this.GetOutputFiles(srcFile, targetName, targetDir);
     Pixmap res = new Pixmap(srcFile);
     res.Save(output[0]);
 }