Add new attachment

Only authorized users are allowed to upload new attachments.

This page (revision-4) was last changed on 13-Jul-2011 21:02 by pgaillard  

This page was created on 13-Jul-2011 20:22 by pgaillard

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Difference between version and

At line 1 removed one line
Spec for draw
At line 3 changed 15 lines
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
!Spec for draw
At line 19 changed 5 lines
Input methods:
• touch (simple, like mouse)
• touch (multi)
• buttons/menus
• keyboard
!! 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
At line 20 added 7 lines
!!Input methods
* touch (simple, like mouse)
* touch (multi)
* buttons/menus
* keyboard
!!Handling of layers
(draw in layer, hide layer, move layer etc.)
At line 26 changed one line
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.
At line 33 added 21 lines
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.
The original design from the Google demo was drawing straight to the view as it went. Then once the user was done drawing a stroke, the hidden bitmap was drawn upon and copied to the view.
The original design seems quite convenient for handling gesture recognition as it means that the reference image (i.e. the hidden bitmap) is not modified as soon as drawing starts but later (end of stroke) which leaves plenty of time to detect a gesture (e.g. zoom) and cancel the drawing.
The MyView instance needs to maintain the zoom level. A float value that represents the number of display pixels used to represent one pixel of hidden bitmap.
Implementation one:
update hidden bitmap every time there is a change (i.e. on every touch move event)
copy modified part of hidden bitmap to view with appropriate scale factor.
Implementation two:
create backup of hidden bitmap on touch down event.
update hidden bitmap every time there is a change and
implementation three:
draw on visible view as events happen and write to hidden bitmap at the end.
This last solution is not WYSYWYG and might look strange when the changes are committed and the view is refreshed from that.
Implemented:
In onDraw:
* 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
At line 29 changed 2 lines
See also Android dev
See also Design for draw
! Related
See also [Android dev journal]
Version Date Modified Size Author Changes ... Change note
4 13-Jul-2011 21:02 2.778 kB pgaillard to previous
3 13-Jul-2011 20:28 2.77 kB pgaillard to previous | to last
2 13-Jul-2011 20:26 2.594 kB pgaillard to previous | to last
1 13-Jul-2011 20:22 0.664 kB pgaillard to last
« This page (revision-4) was last changed on 13-Jul-2011 22:02 by pgaillard  
Welcome (anonymous guest) Wiki Prefs
JSPWiki v2.8.5-svn-6