Cairo.NativeMethods.cairo_image_surface_create C# (CSharp) Метод

cairo_image_surface_create() приватный Метод

private cairo_image_surface_create ( Cairo format, int width, int height ) : IntPtr
format Cairo
width int
height int
Результат System.IntPtr
        internal static extern IntPtr cairo_image_surface_create(Cairo.Format format, int width, int height);

Usage Example

Пример #1
0
 public ImageSurface(Format format, int width, int height)
 {
     surface = NativeMethods.cairo_image_surface_create(format, width, height);
     lock (surfaces.SyncRoot){
         surfaces [surface] = this;
     }
 }
All Usage Examples Of Cairo.NativeMethods::cairo_image_surface_create
NativeMethods