VintaSoft Imaging .NET SDK and Plug-ins Discussions
Questions, comments and suggestions concerning VintaSoft Imaging .NET SDK.
Board index < VintaSoft Imaging < VintaSoft Imaging .NET SDK and Plug-ins Discussions
First, I can't resize the image thanks to touch.Yes, at the moment is not possible to resize image in viewer using touch screen. We will add support for this feature in near time.
I can scroll along the image thanks to the panTool but I can't use the scrollPage Tool by touch.Yes, at the moment is not possible to scroll image in viewer using touch screen. We will add support for this feature in near time.
To resize an annotation, I have to aim just on the corner and it's just impossible for users...You can change (increase) size of interaction point of annotation. Please run our WPF Annotation Demo, open the "View => Interaction Points Settings..." menu and you will be able to change parameters of interaction points of annotations.
Finally, when i try to add text on the page, the visual KeyBoard doesn't appear Automatically.Why do you think that the visual keyboard must appear automatically? Where have you seen such behaviour?
WpfPanTool panTool = new WpfPanTool(); panTool.ProcessMouseEvents = false; panTool.ProcessTouchEvents = true;Here is code snippet that creates visual tool for zooming image in WPF image viewer with 2 fingers:
WpfZoomTool zoomTool = new WpfZoomTool(); zoomTool.ProcessMouseEvents = false; zoomTool.ProcessTouchEvents = true;Here is code snippet that creates visual tool for panning and zooming image in WPF image viewer:
WpfPanTool panTool = new WpfPanTool(); panTool.ProcessMouseEvents = false; panTool.ProcessTouchEvents = true; WpfZoomTool zoomTool = new WpfZoomTool(); zoomTool.ProcessMouseEvents = false; zoomTool.ProcessTouchEvents = true; WpfCompositeVisualTool compositeTool = new WpfCompositeVisualTool(zoomTool, panTool);