The software#
Apk for Android 2.1+#
http://spacepirates.com/ro/android/touchcanvas/bin/touchcanvas.apk
Source code#
http://spacepirates.com/ro/android/touchcanvas/
Spec for draw#
Handle rotation of screen#
Zoom in an out (with button, with multi touch)#
Save and load image.#
Change color#
Display summary image to provide context#
Have a tool bar to avoid the menu button on Android 2.2 tablet:#
Tools#
- draw curves (regular, blur, emboss, custom brush, erase)
- draw lines
- selection (draw, rectangle etc.)
- copy paste
- move selection around
- draw text (form+keyboard, recognition)
- zoom
- pan
Input methods#
- touch (simple, like mouse)
- touch (multi)
- buttons/menus
- keyboard
Handling of layers #
(draw in layer, hide layer, move layer etc.)Design for draw#
Buffered drawing#
The original draws on the screen (in the view) and on a hidden bitmap that represents the final product. The hidden bitmap is what gets saved to a file. Currently the same filter and path can be used for both images as they are basically identical.To allow the user to zoom in and out, the two images need to be decorrelated:
- the hidden bitmap can be drawn on as usual.
- the view needs adjustments of scale and translation for the path drawing as well as the copy of the hidden bitmap.
- Have a hidden canvas and a scratch one.
- Copy hidden canvas to scratch with adequate clipping rect
- Draw path on scratch
- Copy updated part of scratch to view
Related#
See also Android dev journalAdd new attachment
Only authorized users are allowed to upload new attachments.