예제 #1
0
파일: Surface.cs 프로젝트: guytp/ztk
        public static Ztk.Drawing.Surface CreateForImage(
            Ztk.Drawing.Format format, int width, int height)
        {
            IntPtr p = NativeMethods.cairo_image_surface_create(
                format, width, height);

            return(new Ztk.Drawing.Surface(p, true));
        }
예제 #2
0
파일: Surface.cs 프로젝트: guytp/ztk
        public static Ztk.Drawing.Surface CreateForImage(
            ref byte[] data, Ztk.Drawing.Format format, int width, int height, int stride)
        {
            IntPtr p = NativeMethods.cairo_image_surface_create_for_data(
                data, format, width, height, stride);

            return(new Ztk.Drawing.Surface(p, true));
        }
예제 #3
0
파일: NativeMethods.cs 프로젝트: guytp/ztk
 internal static extern IntPtr cairo_image_surface_create_for_data(IntPtr data, Ztk.Drawing.Format format, int width, int height, int stride);
예제 #4
0
파일: ImageSurface.cs 프로젝트: guytp/ztk
 public ImageSurface(ref byte[] data, Ztk.Drawing.Format format, int width, int height, int stride)
     : this(data, format, width, height, stride)
 {
 }
예제 #5
0
파일: NativeMethods.cs 프로젝트: guytp/ztk
 internal static extern IntPtr cairo_image_surface_create(Ztk.Drawing.Format format, int width, int height);