To verify, I used Paint Shop Pro and created a file with a butterfly, and shadow and some fully transparent space. Then, I used it as the image for a GoIconicNode.
GoIconicNode pngnode = new GoIconicNode(); pngnode.Initialize(null, "transparent.png", "butterfly"); pngnode.Location = new PointF(100, 500); doc.Add(pngnode);
but it works as a GoImage too... (which is what GoIconicNode is using)
GoImage imgTransTest = new GoImage(); imgTransTest.Name = "transparent.png"; imgTransTest.Location = new PointF(200, 500); doc.Add(imgTransTest);