Hi,
I'm looking for a way to query the ink level for my Epson DX 4050 on Mac OS X. There is some UI called EPSON StatusMonitor to display cartridges levels graphically, but I'd like to get it from the command-line so it can feed a robot.
Any idea ?
...
I have a set of Microsoft ISF (Ink Serialized Format) images, which I am attempting to convert to PNGs to include in a web page. I have successfully used the C# package Microsoft.Ink to draw the ink to a Bitmap and save as PNG:
byte[] data; // data has the raw bytes of the ISF file
Ink ink = new Ink();
Renderer renderer = new Renderer()...
I am using RealTimeStylus to get Ink data in a WPF application. This works fine until the window on which I collect the ink loses focus. When I draw on the window after that, the AsyncStylusPlugin does not receive Packets, StylusUp or StylusDown events, even if it get the focus again.
The curious thing is that this problem only occurs o...
I am working on wpf project, I want to know how to measure the angle of the stroke on the ink canvas? whether the stroke is right inclined or left inclined?
...