예제 #1
0
파일: Surface.cs 프로젝트: uvbs/FullSource
 public PdfSurface(string filename, double width, double height)
 {
     surface = CairoAPI.cairo_pdf_surface_create(filename, width, height);
     lock (surfaces.SyncRoot){
         surfaces [surface] = this;
     }
 }