I am trying to create an image in memory so that I can combine two or more transparent images and present them as a bitmap in a picture box in a user control.
my opening code :
System.Drawing.Image Beat = new System.Drawing.Image()
results in "Cannot create an instance of the abstract class or interface 'System.Drawing.Image'"
can anyone tell me why?
I am using the following directives (so to rule out ambiguity)
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using DevExpress.XtraEditors;
many thanks
Dan