The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
11 views

how to display bitmaps on a canvas one after the another???…can we use handler?

how to display bitmaps on a canvas one after the another???.....can we use handler... i have tried it but it doesnot work ??? public class Ex_view extends View implements OnTouchListener{ Handler ...
1
vote
1answer
24 views

Android getting Bitmap dimensions depending on resolution of device?

I am currently trying to create a grid of multiple squares (Should be a minesweeper grid one day). Now my solution of getting every mine a specific position is by using this loop: for(int i = 0; i ...
0
votes
1answer
41 views

how to store bitmap assets in vb.net?

I used to use VB 6.0 and now I'm switching to .net and I'm finding lots of things have changed. Back in the day, I used to store graphics assets in pictureboxes, make them invisible, and then bitblt ...
0
votes
0answers
19 views

why bitmapfunc used two copys of disk cache [closed]

I get the source code from http://developer.android.com I try to change some code to be suitable for My application. But I just could not understand why they use two copys of disk cache -- ...
0
votes
0answers
26 views

Android Bitmap Class (for whole app)

How is it possible to have one class specifically for loading bitmaps in an android app? Say: public class loadBitmaps(){ public loadBitmaps(){ //load bitmaps here } //End of constructor } //End ...
1
vote
1answer
109 views

Quickest way to compare two BitmapImages to check if they are different in WPF C#

What's the quickest way to compare 2 BitmapImage objects. One is in the Image Source property, and another I create in code. I can set the image source with the new bitmap image, but it causes ...
0
votes
1answer
14 views

Is there a way to free the memory used by threads when debugging in Android?

I'm having some problems debugging an Android app which runs a string of memory-intensive operations on bitmaps. From Google's Debugging tips, I know that The debugger and garbage collector are ...
0
votes
0answers
28 views

Windows Programming - Bitmap to Button

I am programming for windows and i would like to know: How can i turn bitmaps into buttons? Instead of typing in my keyboard the letters, i want to click on the bitmap as if it was a button.
1
vote
0answers
66 views

Show preview of bitmap on rollover in Visual Studio debugger

How do I create a Visual Studio 2010 Extension to show a panel when I rollover a Bitmap? I'd like to show the thumbnail of the Bitmap object on rollover, something like this: How can I accomplish ...
1
vote
1answer
48 views

Best way to draw images in an activity

I need to draw a bitmap and yet change it when buttons are pressed on an activity class. I have tried using a View class but unfortunately I am having no luck. I thought this would be a simple enough ...
1
vote
0answers
37 views

Changing bitmaps on a canvas

I have a view class and and activity and the view class in linked in with the XML. The view class starts by drawing a bitmap of the letter a. In the activity there are next and previous buttons to ...
0
votes
1answer
80 views

Bitmap recycle in finalize method not working properly

I am having crashes in my application when I try to load an image with size close to the maximum size of the application heap. The first time I load the image is fine, then I delete references to the ...
0
votes
1answer
20 views

What are the usual bit values for bitonal images?

I'm planning on storing some binarized (bitonal) images in a 1bpp binary format. What values should I use for white and black? Usually in RGB: White is 255,255,255 Black is 0, 0, 0 So for ...
1
vote
1answer
93 views

Why does my clock wigdet use a lot of RAM after a while?

I created a clock widget that is updated from service (via broadcast receiver) every minute but after some hours it takes about 600mb of RAM. The widget draws a bitmap every minute with some ...
0
votes
0answers
42 views

Bitmaps and scaled bitmaps

I'm loading multiple bitmaps (aprox 40 of varying sizes from full-screen images to individual sprite frames) using: Bitmap graphic = BitmapFactory.decodeResource(res, R.drawable.mygraphics); And ...
0
votes
2answers
101 views

Fastest way to read 3 bytes at a given pointer address?

I'm currently reading the pixel data of a bitmap, using the BitmapData available after locking the bitmap. The method I'm using reads each color byte seperately, and would be slower than reading a ...
0
votes
0answers
40 views

Accessing BitmapData erratically shows “cannot access protected memory”

I'm working with bitmaps in C#, and using the unsafe BitmapData class to access the pixel data directly. Erratically and for no apparent reason I get this error (rarely, probably every hour or so) ...
0
votes
1answer
253 views

how to set heap size to minimum when application was closed

I am developing one android application which is using more images with resolution 640*960 approximately. all these images are loaded with bitmaps with proper scaling factor. When i am loading ...
4
votes
2answers
43 views

Where to create bitmaps etc

As my app (game) is getting larger and larger, I've started to encounter a problem. I have a menu activity with a 'start game' button - when the user presses this button, it starts the main game ...
0
votes
1answer
292 views

Repeating 6 bitmas taken from drawable on map causes out of memory error

I already tried to find a solution to my problem in this and in some other sites but with no luck. I have a map (Google map V2) set on my app. This map is full of markers (around 450) and each marker ...
0
votes
2answers
245 views

android set Bitmap image

I am now making a painting apps, and would like to ask how to load a picture and set to a Bitmap? I have set the coding as follows, and links Class A and Class DrawView. Question: The code reports ...
0
votes
2answers
189 views

Modify a byte of a C# color int or uint

I'm working with bitmaps in C#, and as you know bitmaps are usually stored as 24bpp or 32bpp in memory (when locked). After extracting the int color value of a pixel, I need to read one byte at a time ...
0
votes
2answers
233 views

Large Frame By Frame Animation Android

I'm new to creating animations on android. I'm trying to create a large frame by frame animation using a lot of .png's. I have two animations I need to play, with one of them being 100 frames big ...
-2
votes
3answers
421 views

How to convert Bitmap to Byte Array

I want to convert a URL to Bitmap image.i am also trying to compress and saving this bitmap on SD Card but when i run code, no image is displayed in Web Image-view. i have following code: ...
2
votes
1answer
267 views

Bitmaps don't display using lrucache and asynctask

I’m trying to create a simple file manager and I have a problem with thumbnails (bitmaps) loading. I wanted to use AsyncTask and Lru cache using these tips: ...
0
votes
0answers
43 views

How to Show or to Hide StaticBitmaps in wxpython

I am trying to create a game called "Find the Difference" using the methods Hide() and Show() for the StaticBitmaps!!!I put BitmapButtons in gaps where the differences are!! But it doesnt ...
4
votes
1answer
457 views

Recycle bitmaps on a listview causes issues

I got a list view where im displaying images, these images are downloaded and cache properly. As I scroll down the list and load new items I want to recycle the least recently used ones to save on ...
3
votes
0answers
187 views

Draw video frames as bitmaps to MFC Window

I'm trying to write a preview application using the BlackMagic SDK, but am getting choppy playback. I'm using MFC framework, and subclassing CWnd for my video preview window. When each frame of video ...
0
votes
1answer
813 views

Android app memory limits

I have an app that animates gif's by loading all of the frames as separate bitmaps into memory and having a thread loop through them assigning them to the imageViews. The imageViews are on fragments ...
2
votes
1answer
341 views

actionscript3 ArgumentError: Error #2015: Invalid BitmapData.

I'm a designer trying my hands in the world of code. So far, I've been able to figure things out, but I've finally hit a wall. I'm working in Flash here, so the possibility does not escape me that ...
0
votes
0answers
94 views

how to safely remove bitmaps from a viewPager in android

I have a viewPager in which i hold fragments and every fragment has a GifDecoderView public class GifDecoderView extends ImageView { private boolean mIsPlayingGif = false; private GifDecoder ...
1
vote
3answers
218 views

How are Bitmaps stored in memory in .NET?

In .NET you usually use the Bitmap class to store images. To access it quickly, you need to call lock() and unlock() to copy the contents of the bitmap into memory. So, does it mean that the bitmap ...
0
votes
1answer
64 views

Animation optimization for many identical vector shapes in AS3/AIR

I have many small, identical vector circles that move around the screen, but only appear for a defined period in defined areas. Currently, these circles are children of whatever parent object produces ...
0
votes
1answer
252 views

Android Memory Leak? Bitmap exceeds VM budget error with Fragments

My Application contains several fragments as I am showing them in Two Tabs. Few Fragments were categorized into first Tab and few are into another Category which are shown is second tab. And it also ...
0
votes
1answer
89 views

Live wallpaper - memory budget exceeded when in preview mode

I've got this problem with my live wallpaper. It loads about 10 images, one is big enough (960x600) others are much smaller, big one is jpg, smaller in png (becouse of transparency). Anyway, it works ...
0
votes
0answers
44 views

setting background and animating above it

I am trying to set an image "back" as a background to my canvas but also I want to animate a bitmap"sun" over this background , it doesn't work for me , so I tried to draw a rect but also I cant ...
0
votes
2answers
365 views

Android Out of memory loading bitmaps

I have an android game that loads 6 images totaling 300kb. I've already read and implemented this article http://developer.android.com/training/displaying-bitmaps/load-bitmap.html and while it helped ...
0
votes
1answer
175 views

Android destroy bitmaps on pause

I have a game that uses 4 bitmaps. I was just wondering if I should destroy these bitmaps onpause of the game and then recreate them, or leave them as is?
0
votes
0answers
225 views

Fragments: Bitmap size exceeds VM budget using Fragments

My Application have two categories and user has to be able to interchange between the categories at any time. So I have used Tabs and in two tabs respectively place two fragment activities and using ...
0
votes
1answer
65 views

Android - displaying lots of images without storing them as byte data?

Ive been using various lazy loading techniques for images and other things. It works but I was wondering if there is a better way that some one knows of for getting an image from a ...
0
votes
3answers
371 views

Android - Images take up too much heap space

I've come across a strange problem - I'm making an android game and noticed a lag every few seconds and checked the logs when I noticed the garbage collector was being called every few seconds for ...
0
votes
0answers
105 views

Android custom adapter show bitmap from mediastore

I was successfully capturing img URI from mediastore and showing them in my listview with a custom adapter thx to this method - > img.setImageURI(parsedUri); The problem is that meths goes out of ...
0
votes
1answer
66 views

Consequences of recycling Bitmaps?

Hi in my application I have an explosion animation that comes up extremely often. when creating an explosion I load 3 images from resources then once the explosion animation is over I recycle those 3 ...
0
votes
1answer
230 views

Bitmaps or Binary search tree

Can anyone help me in this? Which is the following data structures be best suited for insertion, deletion, lookup, set intersection, union? Optimize time complexity. a) Bitmaps b) Binary search tree
1
vote
1answer
332 views

Create bitmap in ndk level and display

I want to create one bitmap and display it on screen by using ndk code, can anybody tel me how to do that. Sample code is good to understand. Thanks in advance.
1
vote
2answers
990 views

Speed of large amount of animated bitmaps in EaselJS

I seem to have a bit of trouble with using a large amount of animated bitmaps (all based on the same spritesheet) when using EaselJS. When I run a couple of these at once on my stage, there is no ...
1
vote
0answers
313 views

Optimize android canvas background drawing by caching matrix

I have a SurfaceView canvas I'm drawing a scene into. The canvas is transformed to accomodate the logical scene size which is 1024x768 (while the actual screen is 800x480), and also to support ...
2
votes
0answers
137 views

Android: drawing bitmaps with sub-pixel coordinates

I've just noticed that despite Canvas.drawBitmap() taking float coordinates (some variants, at least), it performs no sub-pixel anti-aliasing when blitting. That is, the bitmap is always drawn at ...
1
vote
2answers
683 views

Continuous creation of bitmaps leads to memory leak

I have a thread that continuously generates bitmaps and takes a screenshot of another program's window. Now, I have a pictureBox on my form, and that's constantly being updated with the bitmaps ...
0
votes
1answer
533 views

Android OpenGl Es 2.0 live wallpaper textures and bitmaps

I m developing a live wallpaper with opengl es 2.0 and i would like to know if there is a way to keep the textures loaded on create of renderer ,or the bitmaps , so they dont need to recreate every ...

1 2