Questions tagged [wacom]

Wacom is a company that produces graphics tablets and related products.

Wacom is a company headquartered in Japan that produces a range of graphics tablets that are popular with artists, graphic designers, architects, and cartoonists worldwide.

Wacom's graphics tablets are reasonably well supported in open-source. The Linux Wacom project supplies a kernel driver and an X.Org driver for using these tablets with GNU/Linux. The Linux Wacom project's source code has also been ported to other open-source operating systems such as OpenSolaris and FreeBSD.

89 questions
1
vote
0 answers

Best way to retrieve pen pressure value from a Wacom Intuos M for a 64bit SFML drawing application on Win7/64bit?

iam looking for a lightweight solution to retrieve pen pressure from a wacom tablet. My system is win7 64bit and the application is an SFML c++ 64bit program. I found that wintab seems to be the industry standard but its only 32bit. Also i found MS…
Chris
  • 79
  • 1
  • 8
1
vote
0 answers

Problem with saving picture from inkCanvas

I work with application which can capture strokes and save the data such as coordinates and time (Wacom tablett, CDL-Windows-1.0.1). I am trying to save picture from inkCanvas but I always get error that inkCanvas does not contain definition…
Emil_Bayt
  • 11
  • 1
1
vote
0 answers

How to find a WACOM tablet screen?

I trying to fill Wacom tablet screen with my application. How can I find this screen working area? At this moment I just trying to find this screen by Device Friendly name using ScreenInterrogatory class (code below), but it requires me to know…
Hawex
  • 133
  • 13
1
vote
3 answers

Wacom Integration into java

I just got a signature pad from wacom, the STU 430 and I want to integrate into my Java application. I downloaded the SDK signature, installed it and then I installed the samples to try it but there's a problem with that. I can't execute any code…
J0ki
  • 302
  • 2
  • 20
1
vote
1 answer

Wacom API, TextAlign on labels not working

I'm using a Wacom STU 530 signature tab with the Signature SDK v3.20.4. My problem is about text lining when creating labels. /* We have this controller which was placed in a windows form * It's that object that will mainly communicate with the…
Qrom
  • 487
  • 5
  • 20
1
vote
1 answer

How to detect double-click/tap when handling WM_POINTER message?

I am trying to implement Pointer Input Messages to replace regular mouse message in a window. I'm doing this to have a better support of stylus input in my program. Everything works fine except for double-click. I didn't process pointer message…
Jacob
  • 43
  • 8
1
vote
0 answers

Volito2 replacement pen

I bought a Wacom volito2(ctf-420)drawing tablet second-hand the other day, but it did’nt come with the pen. I was just wondering if anyone knows a place where i could get a replacement pen. Thanks in advance :P
1
vote
1 answer

mousedown event in PIXI doesn't get triggered with creative pen

I have an issue where I have a button on my canvas which works great when I use a regular mouse, but when I use my Wacom creative pen tablet the button seems to not work. mainLayer.on("mousedown", () => start());
Nine Zero
  • 33
  • 6
1
vote
1 answer

How can I use Samsung Note devices' pen pressure in Chrome?

I've seen various web apps (e.g. Colorillo) that support Wacom tablet pens' pressure data by using Wacom's plugin. Chrome for Android does not support plugins, so how can I use the pen pressure of Samsung Galaxy Note devices in the browser? (Which…
Protector one
  • 6,926
  • 5
  • 62
  • 86
1
vote
1 answer

Xsetwacom works fine, but won't run inside a bash script

I decided to set up a simple bash script that would automatically setup my Wacom tablet, but I'm having some issues. Here's the file: #!/bin/bash #Used to setup my Wacom Tablet (Intous Draw) xsetwacom --list echo "Setting up Wacom Tablet..." sudo…
1
vote
1 answer

Java: How capturing pen data in Wacom STU-530 Tablet?

I'm trying to capture all the pen data: touch, pressure at one point, coordinates of the touch ... Any suggestions? SigCtl sigCtl = new SigCtl(); DynamicCapture dc = new DynamicCapture(); int rc = dc.capture(sigCtl, "who", "why", null, null); if(rc…
1
vote
0 answers

wacom and myscript set handwritng recognition function

im not sure if its the right place to put my question, but i think maybe get an answer here. the last few days thinking about a way to make μυ work easier. What I want is to write by hand and convert into text on the computer. namely when I am on a…
dpapatsarouchas
  • 151
  • 1
  • 2
  • 15
1
vote
0 answers

Fiddling with multitouch

I have a wacom bamboo pad and want to do some crazy stuff with it which involves grabbing the touchpad. The touchpad can be grabbed in two modes: Observer and Consumer. While Observer mode passes the touch data to the os also, consumer 'eats' the…
CShark
  • 1,413
  • 15
  • 25
1
vote
0 answers

Block the mouse keeping the stylus active

I'm developing a C Windows forms application and I need to block every input from the keyboard and the mouse while the user is using the stylus on a Wacom tablet. I've tried using global mouse and keyboard hooks as described here to manage all the…
Francesco Baruchelli
  • 7,320
  • 2
  • 32
  • 40
1
vote
1 answer

Reading data-only from Wacom tablet

Is there any way to read data from Wacom tablet without raising mouse-events on Linux? I'm now using Ubuntu 12.04 LTS and Wacom Intuos 5. It's OK to use the tablet on Ubuntu and I'm using tablet via Ggtkmm3.0. But I would like to get ONLY the…