Jingwood

Results 173 comments of Jingwood

Did you have try the alpha channel option? If your `backImage` and `frontImage` are GDI bitmaps, call `drawBitmap` and pass `true` to enable alpha channel. ```cs g.DrawGDIBitmap(..., alpha: true, ...);...

Maybe you have to provide more details to get help. How do you handle your image in memory? What type of image that read from the DVR Recorder? What API...

Thanks! Hope this lib helps you. Do you mean draw a masked bitmap? I think it is easy by making some improvements, I will take a look.

Now some APIs to support this have been added. Direct2D uses layers to make clipping mask, for an ellipse mask, you can use the following code: ```csharp protected override void...

Glad to hear that! Yes, any path geometries are supported. You can also combine multiple paths by pushing nested layers. Any contributions are welcome, feel free to share it!

Hi, Can you tell me what font you are using? Because in my environment there seems no problems to me. And your windows environment information such as scale (DPI), resolution....

Thanks! I will add the support for style option as well as a font object as argument.

Hi! Glad to know that it helps you! I will have a check on how to implement a semi-transparent rendering.

`DrawBeziers` and `AddPathBeziers` should be improved. relates to #52

Thanks! This issues relates to #60