Esempio n. 1
0
        private void MainForm_Load(object sender, EventArgs e)
        {
            GpStatusPlus stat       = NativeMethods.GdiplusStartup(out token, input, out output);
            string       bitmapPath = System.IO.Path.GetDirectoryName(GetType().Assembly.GetModules()[0].FullyQualifiedName);

            bitmapPath = System.IO.Path.Combine(bitmapPath, "test.jpg");
            StreamOnFile sf = new StreamOnFile(bitmapPath);

            bmp      = new BitmapPlus(sf);
            penWrite = new PenPlus(Color.Blue, 3);

            path = new GraphicsPath(FillMode.FillModeAlternate);
        }
Esempio n. 2
0
 private void Form1_Load(object sender, EventArgs e)
 {
     // initialize gdiplus
     GpStatusPlus stat = NativeMethods.GdiplusStartup(out token, input, out output);
 }