public static void Setup() { CommonTextServiceSetup.SetupDefaultValues(); PixelFarm.DrawingGL.CachedBinaryShaderIO.SetActualImpl( () => new PixelFarm.DrawingGL.LocalFileCachedBinaryShaderIO(Application.CommonAppDataPath)); FrameworkInitGLES.SetupDefaultValues(); PixelFarm.CpuBlit.Imaging.PngImageWriter.InstallImageSaveToFileService((IntPtr imgBuffer, int stride, int width, int height, string filename) => { using (System.Drawing.Bitmap newBmp = new System.Drawing.Bitmap(width, height, System.Drawing.Imaging.PixelFormat.Format32bppArgb)) { PixelFarm.CpuBlit.Imaging.BitmapHelper.CopyToGdiPlusBitmapSameSize(imgBuffer, newBmp); //save newBmp.Save(filename); } }); //you can use your font loader YourImplementation.FrameworkInitWinGDI.SetupDefaultValues(); //default text breaker, this bridge between LayoutFarm.Composers.Default.TextBreaker = new LayoutFarm.Composers.MyManagedTextBreaker(); }
public static void Setup() { if (CommonTextServiceSetup.FontLoader == null) { InstalledTypefaceCollectionMx.Setup(); CommonTextServiceSetup.SetInstalledTypefaceCollection(InstalledTypefaceCollectionMx.GetDefaultInstalledTypefaceCollection()); } PixelFarm.DrawingGL.CachedBinaryShaderIO.SetActualImpl( () => new PixelFarm.DrawingGL.LocalFileCachedBinaryShaderIO(Application.CommonAppDataPath)); FrameworkInitGLES.SetupDefaultValues(); //TODO: review namespace*** var pars = new PixelFarm.Platforms.ImageIOSetupParameters(); pars.SaveToPng = (IntPtr imgBuffer, int stride, int width, int height, string filename) => { using (System.Drawing.Bitmap newBmp = new System.Drawing.Bitmap(width, height, System.Drawing.Imaging.PixelFormat.Format32bppArgb)) { PixelFarm.CpuBlit.BitmapHelper.CopyToGdiPlusBitmapSameSize(imgBuffer, newBmp); //save newBmp.Save(filename); } }; pars.ReadFromMemStream = (System.IO.MemoryStream ms, string kind) => { //read //TODO: review here again using (System.Drawing.Bitmap gdiBmp = new System.Drawing.Bitmap(ms)) { PixelFarm.CpuBlit.MemBitmap memBmp = new PixelFarm.CpuBlit.MemBitmap(gdiBmp.Width, gdiBmp.Height); //#if DEBUG // memBmp._dbugNote = "img; //#endif PixelFarm.CpuBlit.BitmapHelper.CopyFromGdiPlusBitmapSameSizeTo32BitsBuffer(gdiBmp, memBmp); return(memBmp); } }; PixelFarm.Platforms.ImageIOPortal.Setup(pars); //you can use your font loader YourImplementation.FrameworkInitWinGDI.SetupDefaultValues(); //default text breaker, this bridge between LayoutFarm.Composers.Default.TextBreaker = new LayoutFarm.Composers.MyManagedTextBreaker(); }