HI there
That exactly what i want to do .I want to load image to screen.And i tried to load the screen image using this code from an image program:
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.load Image File(reImage, "c:/reimage.png", new PNGEncoder());
But i failed to do that.What's wrong with my code?Thanks for any suggestion.