Ask Your Question

Abigail111's profile - activity

2013-08-21 04:18:24 -0600 answered a question Loading image

How about this demo code to load images,Ithink there is something wrong with your code:

using RasterEdge.Imaging.Basic.Core;
using RasterEdge.Imaging.Basic.Codec;
using RasterEdge.Imaging.Basic;

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());
        }
    }
}
2013-08-21 04:07:49 -0600 answered a question Please suggest me how to do automatic image annotation?

Yon can have an imaging SDK,which can process any image matters ,including image annotations.The annotation capabilities can be used to markup and draw objects onto an image or document, including text, freehand, line, ellipse, rectangle, rubber stamps, etc.