|   | 1 |  initial version  | 
Hi there I usually save image using this code: using RasterEdge.Imaging.Basic.Core; using RasterEdge.Imaging.Basic.Codec; using RasterEdge.Imaging.Basic; http://www.rasteredge.com/how-to/csharp-imaging/imaging-saving-printing/ namespace RE__Test { public partial class Form1 : Form { public Form1() { InitializeComponent(); }
    private void button1_Click(object sender, EventArgs e)
    {
        string fileName = "c:/Sample.png";
        REImage reImage = REFile.OpenImageFile(fileName);
        REFile.SaveImageFile(reImage, "c:/reimage.png", new PNGEncoder());
    }
}
}
|   | 2 |  No.2 Revision  | 
Hi there
I usually save image using this code:
using RasterEdge.Imaging.Basic.Core;
using RasterEdge.Imaging.Basic.Codec;
using RasterEdge.Imaging.Basic;
http://www.rasteredge.com/how-to/csharp-imaging/imaging-saving-printing/
namespace RE__Test
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }spam removed
    private void button1_Click(object sender, EventArgs e)
    {
        string fileName = "c:/Sample.png";
        REImage reImage = REFile.OpenImageFile(fileName);
        REFile.SaveImageFile(reImage, "c:/reimage.png", new PNGEncoder());
    }
}
}
 Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
 
                
                Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.