Skip to content

OpenRasterCreator - creation of images in ora (OpenRaster) format

Notifications You must be signed in to change notification settings

atomlayer/OpenRasterCreator

Repository files navigation

OraCreator

Usage example

            List<Bitmap> list = new List<Bitmap>();
            list.Add(new Bitmap("img0.png"));
            list.Add(new Bitmap("img1.png"));
            list.Add(new Bitmap("img2.png"));

            var openRaster = new Openraster(
                new LayerFolder("testFolder",
                    new Layer(list[1], "test1",Composite.Multiply,Visibility.Visible,0.6),
                    new Layer(list[2], "test2"),
                    new LayerFolder("testFolder2",Composite.Multiply,
                        new Layer(list[0], "test1"))),
                new Layer(list[0], "test1")
            );

            openRaster.Save(@"output.ora");

Result

result

Stuff used to make this:

About

OpenRasterCreator - creation of images in ora (OpenRaster) format

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages