HI there
Thanks for your nice sharing.I tried to sharpen the image using this code which is from an
image SDK in google:
namespace WindowsApplication1
{
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);
REImage newImage = ImageProcessing.ApplySharpen(reImage);
REFile.SaveImageFile(newImage, "c:/reimage.png", new PNGEncoder());
}
But i failed.What's wrong with my code?Is there any image tool which supports to do that directly?Thanks a lot