- Joined
- Apr 24, 2012
- Messages
- 9,797
How to make images unselectable/undraggable?
As far as I am aware they are not selectable or dragable as data is not material.How to make images unselectable/undraggable?
Why on earth would you want to do that? If you already have the image in memory then you can perform a bulk copy operation on it which will likely execute several times faster. If not then a copy is automatically generated when you load the image into memory so there is no need for another one unless you want to retain a copy of the original as well.I think you can create a replica of an image. Basically you loop through every single pixel in a image and get the color of the pixel. Then you re-draw the image pixel by pixel.
Why on earth would you want to do that? If you already have the image in memory then you can perform a bulk copy operation on it which will likely execute several times faster. If not then a copy is automatically generated when you load the image into memory so there is no need for another one unless you want to retain a copy of the original as well.