本文介绍了使用Microsoft.Ink实现数字笔的问题!的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好

我使用microsoft.ink在我的应用程序中实现光学(或数字)笔。此代码正常工作:

i've used microsoft.ink to implement optical (or digital) pen inside my app. this code works correctly :

// The Microsoft Tablet PC namespaces
using Microsoft.StylusInput;
using Microsoft.StylusInput.PluginData;
using Microsoft.Ink;

private RealTimeStylus myRealTimeStylus;
private void FrmCanvas_Load(object sender, EventArgs e)
{
	myRealTimeStylus = new RealTimeStylus(myPanelControl, true);
	DynamicRenderer dr = new DynamicRenderer(myPanelControl);
	myRealTimeStylus.SyncPluginCollection.Add(dr);
	myRealTimeStylus.AsyncPluginCollection.Add(this); 
            
	myRealTimeStylus.Enabled = true;
	dr.Enabled = true;           
}

但我有一个问题:

如何将其保存为位图?

How to save this as bitmap?

提前感谢。

thanks in advance.

http://www.codeproject。 com / KB / codegen / DatabaseHelper.aspx

http://www.codeproject.com/KB/codegen/DatabaseHelper.aspx

推荐答案

谢谢在这里发布。

对于您的问题,您可以尝试使用  Ink.Save方法。 

For your question, you could try to use Ink.Save Method. 

有关该方法的更多详细信息,请参阅MSDN文档。

For more details about the method, please refer to the MSDN document.

https://msdn.microsoft.com/en-us/library/aa515949.aspx?f=255&MSPPError=-2147217396

最诚挚的问候,

Wendy


这篇关于使用Microsoft.Ink实现数字笔的问题!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 23:13