To start with you need two ImageGlue Canvas. We'll create them
and put a picture of a boat into one and a picture of some birds
into the other.
thePath = Server.MapPath("images/boat.jpg")
Set theCanv1 = Server.CreateObject("ImageGlue5.Canvas")
theCanv1.DrawFile thePath, ""
thePath = Server.MapPath("images/birds.jpg")
Set theCanv2 = Server.CreateObject("ImageGlue5.Canvas")
theCanv2.DrawFile thePath, ""
|