The more general term pixmap refers to a map of pixels, where each one may store more than two colors, thus using more than one bit per pixel. Often bitmap is used for this as well. In some contexts, the term bitmap implies one bit per pixel, while pixmap is used for images with multiple bits per ...

learn more… | top users | synonyms

4
votes
0answers
375 views

WPF's BitmapCache is not completely cleared

We have a WPF Page with a user control where we use a BitmapCache - when we try to clear this element by updating the property (Data Binding) with an empty Path (New Path()), it is not completely ...
3
votes
0answers
157 views

Merging ImageView to a single Bitmap image (Android)

I have more than one ImageView that I am adding dynamically into a layout class that extends ViewGroup, there is one for the background, and more than one other ImageView that are draggable on top of ...
3
votes
0answers
286 views

Draw on captured image with canvas and save to sdcard - broken display - android

I take a picture and want to draw a rectangle on it by placing the rectangle with finger gestures. Everything is working fine and displayed correct while interacting with the screen. But when I want ...
3
votes
0answers
900 views

Drawing offscreen WebView and capturePicture issues

My goal is to turn a WebView into a Bitmap so I can add it to a homescreen widget. I have gotten WebView.capturePicture() to work fine; however, I cannot get the WebView to render without setting it ...
2
votes
0answers
41 views

Loading images to specific coordinates in SCanvasView

I am creating an android application and am working with canvas bitmaps (specifically the Samsung SPen SDK). I currently have the functionality I want working working, but the way the loading is ...
2
votes
0answers
72 views

Passing an image with intent causes “Failed Binder Transaction”, but still displays image correctly

FIXED In the end I created my bitmap on the last activity instead of passing it with intents which solved the problem. So I'm taking an image and some text and then place it on the image, then I ...
2
votes
0answers
111 views

PdfBox: issues when creating pdf from bmp

When generating a PDF form BMP the result is allways curios. Input "hellowworld.bmp" Output (only the relevant part) why is there a loss of quality why is it repeated three times why is there a ...
2
votes
0answers
176 views

Is it safe (pun intended) to copy bitmap regions using lockbits this way?

I think I've found a MUCH faster way to copy bitmaps in c#. (If it's valid, I'm sure I wasn't the first but I haven't seen it anywhere yet.) The simplest way I can think to ask this is to assert what ...
2
votes
0answers
82 views

How to get mime type from a bitmap object in android?

I want to get mime type of a bitmap object. Actually I have compressed a bitmap using bitmap.compress (Bitmap.CompressFormat.PNG , 100, stream); Now I want to cross check the format, outBounds and ...
2
votes
0answers
174 views

Saving Bitmap as 1bpp PNG on Android

I'm searching for a method to save a small monochrome Bitmap to a 1bpp PNG file. By default, the bitmap.compress(CompressFormat.PNG, 100, os) produces a 32bpp PNG file having only 2 colors, and about ...
2
votes
0answers
58 views

how to edit big images in android?

I am trying to save small images from the original which I load from SDcard. Android doesn't allow me to create bitmap of bigger image sizes so I had to use options, doing so my images' resolution is ...
2
votes
0answers
201 views

BitmapFactory.decodeFile returns null - issue on writing or reading file?

This is my code for saving a bitmap to sdcard: public static boolean savePhoto(String fileName, Bitmap photo) { deleteOldPhotos(); File sdCardPath = new ...
2
votes
0answers
139 views

Put a metafile or bitmap in needed picturebox

Well I have two pictureboxes. First one is for metafile image, second is for bitmap image. When the picture is in clipboard after buttom has been pressed I need to check out the format of the picture ...
2
votes
0answers
50 views

Android RemoteControlClient Bitmap Scaling

I have successfully included RemoteControlClient in my app. However, I was wondering if there is any way to prevent the bitmaps thrown at it from scaling On all aspects. I can do this in my ...
2
votes
0answers
174 views

creating several bitmaps and binding them to texture

i need to create a bitmap and to load it as a texture( create a bitmap in program, make some drawings and then bind it to texture) loading bitmap from file system is like this private int ...
2
votes
0answers
41 views

how to check touch on a particular bitmap among multiple bitmaps drawn on a same canvas in android?

I need a help to check onTouch event on a particular bitmap among multiple bitmaps drawn onto same canvas... I can move that bitmap among all but problem is that it is moving on touch of whole canvas ...
2
votes
0answers
79 views

Camera taken Images display in lanscape mode in imageview?

I am currently working on an image processing Application. When i select Camera taken images it displays as landscape mode only, other Images display properly in imageview. How can i rectify ...
2
votes
0answers
107 views

DrawingCache strange behavior with Motorola devices

I'm having a strange issue on some Motorola devices where I'm getting a Bitmap that's cropped and scaled inside of an ImageView. This is programmed in mono for android 4.2.4. Basically my issue is ...
2
votes
0answers
929 views

android saving and loading PNG bitmaps differences

I'm trying to solve my problem for a several days now and I couldn't figure it out. My application uses a Bitmap to process image's pixels in a similar way steganography does. After I modify Bitmap ...
2
votes
0answers
2k views

MediaStore.Images.Media.getBitmap and out of memory error

My code code is: public Bitmap loadPhoto(Uri uri) { Bitmap scalled = null; try { scalled = Bitmap.createBitmap(MediaStore.Images.Media.getBitmap(getContentResolver(), uri), 0,0,90, 90); ...
2
votes
0answers
622 views

Using BitmapRegionDecoder to tile a large image

I'm currently attempting set a large image (1800x1800) as an overlay on a Google MapView. I've figured out how to tile it, but I'm not quite certain as to how to place each tile in the proper place. ...
2
votes
0answers
203 views

getDrawingCache always returns null even though I did everything people recommend on stackoverflow

I feel like I have tried literally everything. One last thing comes to mind: do I need root to do getDrawingCache ? I think I shouldn't as this has worked for me when I was playing with it and tried ...
2
votes
0answers
2k views

AS3 / AIR / Mobile - Save bitmap to file

I have seriously looked everywhere but can't find a solution. My app easily saves UTF bytes as XML files in the allowed cache locations for both iOS and Android. But I can't work out how to save ...
2
votes
0answers
334 views

Android drag and drop / rotate bitmap in Canvas

I'm trying to find a way to implement Drag And Drop functionality and rotating a Bitmap in my Android application. I want to be able to drag an image on canvas and rotate it. Here is how I'm adding ...
2
votes
0answers
264 views

How to clip Bitmap with a Path

I am trying to achieve the following effect: As you can see the red lined thumbnail is partly clipped on the right side with a border. This border separates the green lined thumbnail wich is ...
2
votes
0answers
1k views

Differences between BitmapFactory.decodeResource and BitmapFactory.decodeStream

I've got an if-else scenario where the if-path uses this code: BitmapFactory.Options options = new BitmapFactory.Options(); options.inScaled = false; options.inPurgeable = true; ...
2
votes
0answers
190 views

Android: Exception applying a ColorMatrixColorFilter to a Paint object, but only for certain Bitmaps

I am kind of a beginner to Android programming, but I've spent a lot of time pinning this down, so hopefully someone knows what's going on. My app has a bunch of Thing objects, each of which has a ...
2
votes
0answers
256 views

Media Foundation. Encoding video from bitmaps with custom IMFMediaSource

Can anyone clarify the following questions? A decent source code snippet or example would be wonderful, the only relevant example I've found so far is WavSource in the SDK. How is the raw bitmap ...
2
votes
0answers
360 views

Tiled Bitmap in LayerListDrawable as background increases view height

To achieve the effect shown in the image below, I combine a nine-patch and a noise bitmap (semi-transparent) in a layer-list, like so: <layer-list ...
2
votes
0answers
854 views

OOM out of memory android error while heap has lots of space

Unless I'm reading the below incorrectly this allocation should be absolutely fine? The DDMS shows a Heap size 15.3 Mb Allocated 8.211 Mb Free 7.11 Mb I've run a dump through MAT (I'm not ...
2
votes
0answers
307 views

Why the different performance with Android, Canvas and DrawBitmap?

I have to draw a bitmap from int arrays and am looking for the fastest way possible to achieve this. I did some performance testing with canvas and drawbitmap. I benched a loop of doing calls to: ...
2
votes
0answers
239 views

Android Bitmap Alpha Banding

I have a png of a radial alpha gradient, so at the edges its black and in the center is completely transparent with a nice smooth gradient. When I load my Bitmap and display it on a SurfaceView ...
2
votes
0answers
201 views

c#: How to convert very large bitmaps

I am currently dealing with very large bitmaps (32bit, > 1GB) close to the bitmap size limit (~ 32 kpx squared). For file storage reasons, I would like to convert these bitmaps into more suitable ...
2
votes
0answers
578 views

How to set bitmap to webview in android

I am using webview for pinch zoom. I have to draw circle after zoom in touch portion. I am trying to draw circle using canvas.I have to set the bitmap back to web view after drawing the circle. ...
2
votes
0answers
64 views

how to deal with animations in android

I am starting to make my first game in Android. It's going to be a simple 2D game, and just to make sure that I am doing the things right, I would like to ask to more experienced game developers out ...
2
votes
0answers
975 views

Android ImageView setImageBitmap

I'm trying to better understand how Android handle images in order to use memory more efficiently. I have an image stored in the Bitmap and I'm using ImageView.setImageBitmap() to display it. Now the ...
2
votes
0answers
133 views

Slightly Distorted Bitmaps on some Android Devices

I have a problem that occurs on some displays (HTC Hero, Motorola Defy, HVGA emulator) where some bitmaps are distorted in a peculiar way: The image apparently is shifted by one or two pixels, e.g. to ...
2
votes
0answers
736 views

BitmapFactory decode function for Android

I encounter problem with .decodeStream function. File cacheMap = new File(context.getCacheDir(), "test.GIF"); if(cacheMap.exist()){ FileInputStream is = new FileInputStream(cacheMap); ...
2
votes
0answers
149 views

How to cut or set transparency value for a circular image bitmap

I have one image bit map which is nothing but a circular image.I want to make some portion(means some arc) to be transparent.How can i do this ? Any way in android?
2
votes
0answers
364 views

Scroll Speed Disparity Android 2D Graphics

I am experimenting with 2D graphics in Android during my off time, and I'm intrigued by the idea of creating a sprite based "sandbox" for playing around. I've looked around online and found some good ...
2
votes
0answers
2k views

Android How to size and save camera picture as bitmap for display in fixed rect area within activity

I have an app that takes pictures of items, and these items must be viewable in a certain fixed region on the ActivityScreen. The problem is the picture displayed in the activity from the saved ...
2
votes
0answers
135 views

Is there an applet equivalent of android's bitmap factory?

I have an android project, and I'm porting some of the project into an Applet based spin off. Is there a similar image manipulation library for android's BitmapFactory that I can use in the applet? I ...
2
votes
0answers
313 views

How to avoid OutOfMemory for TextView containing unlimited ImageSpans?

I am developing a Handwriting note-taking app. The app works in this way: the user write(draw) a text on the touchscreen, the app convert the handwriting to a Bitmap(getBitmapFromHandwriting()), then ...
2
votes
0answers
476 views

Handling several Bitmaps on Android

I'm building an android app that basically answer to touch events, when a touch event occurs I detect which action to perform and act upon it. The actions consists of display different bitmaps, so an ...
2
votes
0answers
358 views

Android, can't read images I saved to data folder

My app uses the following piece of code to write out images I have resized into the app's data folder: private void writeImage(Bitmap bmp, String filename) { try { ...
2
votes
0answers
1k views

Android, native memory use in dumpsys meminfo

I can't seem to find any information to help me understand the memory readings from meinfo. My application loads a bunch of images, uses them, and then when the view is switched it should get rid of ...
2
votes
0answers
1k views

How to draw multiple bitmaps on a canvas

I am having trouble with the canvas function, I have no problem drawing 1 bitmap with the canvas but as soon as I add a 2nd bitmap, it only draws the last bitmap, does not show both. please help. here ...
2
votes
0answers
533 views

Get and set bitmap colour table in android

I've got a bunch of small two colour png images and I'd like to effectively change one of the two colours to another one. Say RED => BLUE. I know I can either loop over each pixel or use ...
2
votes
0answers
10k views

Save Bitmap image to SD card - problem in API 1.5?

Any idea why this is not working on a HTC Hero running on Android API 1.5 ? private static void Save_to_SD (Bitmap bm, String image_name){ String extStorageDirectory = ...
2
votes
0answers
1k views

Exporting image through ContentProvider

I´m trying to export an image from my application to other applications like twitter, facebook or other apps accepting it images. I'm doing the following: private void exportImage() { ...

1 2 3 4 5 26