Tagged Questions

Bitmap or pixmap is a type of memory organization or image file format used to store digital images.

learn more… | top users | synonyms

65
votes
3answers
2k views

What Haskell representation is recommended for 2D, unboxed pixel arrays with millions of pixels?

I want to tackle some image-processing problems in Haskell. I'm working with both bitonal (bitmap) and color images with millions of pixels. I have a number of questions: On what basis should I ...
47
votes
8answers
57k views

Android : Bitmap save to location

I am working on a function to download an image from a web server, redisplay it on the screen, and if the user wishes to keep the image, save it on the SD card in a certain folder. Is there an easy ...
42
votes
2answers
31k views

How to convert a Drawable to a Bitmap?

I would like to set a certain Drawable as the device's wallpaper, but all wallpaper functions accept Bitmaps only. I cannot use WallpaperManager because I'm pre 2.1. Also, my drawables are downloaded ...
21
votes
6answers
11k views

Decoding bitmaps in Android with the right size

I decode bitmaps from the SD card using BitmapFactory.decodeFile. Sometimes the bitmaps are bigger than what the application needs or that the heap allows, so I use BitmapFactory.Options.inSampleSize ...
20
votes
2answers
6k views

GZipStream And DeflateStream will not decompress all bytes

I was in need of a way to compress images in .net so i looked into using the .net GZipStream class (or DeflateStream). However i found that decompression was not always successful, sometimes the ...
16
votes
5answers
10k views

Android: How to rotate a bitmap on a center point

I've been looking for over a day for a sollution to this problem but nothing helps, even the answers here dont help me :/ And googles documentation on this doesnt explain anything.. I am simply ...
16
votes
7answers
29k views

how to load an imageview by url in android?

for example i have an image's url: http://java.sogeti.nl/JavaBlog/wp-content/uploads/2009/04/android_icon_256.png i want to load this link image into my imageview in my project.how?
16
votes
4answers
15k views

Android Tile Bitmap

I'm trying to load a bitmap in Android which I want to tile. I'm currently using the following in my view to display a bitmap: canvas.drawBitmap(bitmap, srcRect, destRect, null) I essentially want ...
16
votes
6answers
22k views

How to get the RGB values for a pixel on an image on the iphone

I am writing an iPhone application and need to essentially implement something equivalent to the 'eyedropper' tool in photoshop, where you can touch a point on the image and capture the RGB values for ...
14
votes
6answers
16k views

Android: Resize a large bitmap file to scaled output file

I have a large bitmap (say 3888x2592) in a file. Now, I want to resize that bitmap to 800x533 and save it to another file. I normally would scale the bitmap by calling Bitmap.createBitmap method but ...
14
votes
4answers
9k views

Finding specific pixel colors of a BitmapImage

I have a WPF BitmapImage which I loaded from a .JPG file, as follows: this.m_image1.Source = new BitmapImage(new Uri(path)); I want to query as to what the colour is at specific points. For ...
13
votes
2answers
393 views

Filling the data in an Android bitmap as quickly as possible from C

I've managed to get an android.graphics.Bitmap created and I'm successfully filling it via the SetPixels command. The problem is that I start off with RGBA data. I then create a jintArray. I then ...
13
votes
1answer
969 views

Android Drawable: layer-list repeat bitmap does not load when entirely covered

I have three full screen week views that are loaded at one time (previous, next, current). Each week view has 7 columns (one for each day of the week) with a drawable background. My drawable resource ...
12
votes
6answers
16k views

OutOfMemoryError: bitmap size exceeds VM budget :- Android

i am downloading images from Url and displaying them. At download time it is giving out of memory error : bitmap size exceeds VM budget. I am using drawable. Code is below: HttpClient httpclient= new ...
12
votes
3answers
7k views

Bitmaps in Android

I have a few questions regarding Bitmap objects and memory and their general taxonomy. What is an in-memory or native bitmap? How is Bitmap memory different from Heap memory?
11
votes
3answers
481 views

Android take screen shot programatically

First off i am writing a root app so root permissions are no issue. I've searched and searched and found a lot of code that never worked for me here is what i've pieced together so far and sorta ...
11
votes
9answers
830 views

What's an efficient way to tell if a bitmap is entirely black?

I'm wondering if there's a super-efficient way of confirming that an Image object references an entirely black image, so every pixel within the bitmap is ARGB(255, 0, 0, 0). What would you recommend? ...
10
votes
2answers
679 views

How to get metadata from a picture?

I am browsing the web but no way to find how to get metadata from a picture. Does anyone has an idea ? I can't see anything in the Bitmap/BitmapFactory/BitmapFactory.Options documentation that would ...
10
votes
1answer
6k views

How to draw and scale a bitmap on a canvas using bicubic interpolation in Android?

I want to draw a bitmap on a canvas with bigger size than it is. I can use canvas.drawBitmap(bitmap, null, destRect, null); but that gives a poor quality, as the result is pixelated, if the source ...
10
votes
2answers
3k views

C# rotate bitmap 90 degrees

I'm trying to rotate a bitmap 90 degrees using the following function. The problem with it is that it cuts off part of the image when the height and width are not equal. Notice the returnBitmap ...
9
votes
2answers
2k views

Android Widget Bitmap Sizes

Hallo, I am writing a widget, but am unsure what size bitmap to use as a background for each screen resolution/density. According to the Android Developer App Widgets tutorial: To find your minimum ...
9
votes
2answers
4k views

How to make glow effect around a bitmap?

The following code is what I got so far. However, there are 2 issues: I want both inner and outer glow effects, which looking similar to the Photoshop's blending options. But I only managed to make ...
9
votes
8answers
738 views

How to write a huge JPEG that exceeds the physical RAM using Delphi?

Here is the problem. I have a large set of 512x512 pixels JPEG tiles as regular jpg files. I have written a piece of software that does a bunch of things and does need to stitch all those files into ...
9
votes
9answers
2k views

What is the fastest way I can compare two equal-size bitmaps to determine whether they are identical?

I am trying to write a function to determine whether two equal-size bitmaps are identical or not. The function I have right now simply compares a pixel at a time in each bitmap, returning false at the ...
9
votes
9answers
925 views

Rotating a bitmap 90 degrees

I have a one 64-bit integer, which I need to rotate 90 degrees in 8 x 8 area (preferably with straight bit-manipulation). I cannot figure out any handy algorithm for that. For instance, this: // ...
9
votes
5answers
2k views

Best Programmer's Image Editor for OSX [closed]

I'm looking for recommendations for a programmer's image editor for OSX. I'm looking for something for preparing images for use in software and web applications - I'm not a graphic designer. On ...
8
votes
3answers
185 views

c# saving very large bitmaps as jpegs (or any other compressed format)

I am currently handling very large images, which are basically generated by stitching together many smaller images (e.g. panorama or photo mosaic software). In order to avoid out-of-memory exceptions ...
8
votes
2answers
339 views

How to draw a circle after zoom in android

I am using Image view and drawing overlay image using layerDrawable. I have used two bitmaps original and myBitmap. After zoom I am not able draw circle in correct location, it's drawn in different ...
8
votes
7answers
1k views

OutOfMemory error while joining large images

I am joining two images using the code below but it throws an OutOfMemory error my images are around 1MB each. private Bitmap overlayMark(String first, String second) { Bitmap bmp1, bmp2; ...
8
votes
4answers
889 views

How to identify CMYK images in ASP.NET using C#

Does anybody know how to properly identify CMYK images in ASP.NET using C#? When I check the Flags attribute of a Bitmap instance, I get incorrect results. I have created three images to test this: ...
8
votes
2answers
8k views

converting Java bitmap to byte array

Bitmap bmp = intent.getExtras().get("data"); //from camera int size = bmp.getRowBytes() * bmp.getHeight(); ByteBuffer b = ByteBuffer.allocate(size); bmp.copyPixelsToBuffer(b); byte[] bytes = new ...
8
votes
3answers
2k views

Android Edit Bitmap Channels

It's possible to access the alpha channel of a given bitmap with extractAlpha(), but I haven't been able to find any way to actually set the alpha channel of a bitmap. How can multiple greyscale ...
8
votes
5answers
4k views

C#, convert image to grayscale

Is there a way to convert an image to grayscale 16pixels per bit format, rather than setting each of the r,g and b components to luminance. I currently have a bmp from file. Bitmap c = new ...
7
votes
0answers
177 views

Consensus on lazy loading Bitmaps in an Adapter (emphasis on Bitmap.recycle()) [closed]

I see a truckload of suggestions for this, but none (that I've found) take all factors into account, the factors being: Asynchronous downloading, without duplication (of downloaders and ...
7
votes
4answers
329 views

How to store a bit-array in C++?

What's the best way to store a bit array in C++ (no Boost, just standard containers), representing, for example, a volume allocation bitmap? I thought std::vector<bool> was a great idea, but ...
7
votes
3answers
128 views

How would I have to imagine pixel-based rendering in Haskell?

Imagine an imperative rendering engine that blits sprites to a bitmap that later gets displayed. This heavily relies on the ability to efficiently mutate individual pixels in said bitmap. How would I ...
7
votes
3answers
221 views

Should i resize the bitmap before adding to a ImageView or let the ImageView resize the Bitmap?

i have a simple question: Should i resize a bigger bitmap before adding to a ImageView or let the ImageView resize the Bitmap? What's the right way, regarding performance? Thanks
7
votes
1answer
139 views

Counting fully bound holes in a bitmap image?

I have a monochrome bitmap image, and I wish to find fully bound holes in the image. Only holes that are fully bound by black pixels should be included: 0000000000 0001111100 0010000010 ...
7
votes
2answers
324 views

What's the most efficient bit vector compression method for my use case?

I'm working on a project in computational biology and I need to store an index of locuses that differ between many sequences. For now, I'm using a B+Tree for that purpose, but I guess using a bitmap ...
7
votes
2answers
4k views

java.lang.OutOfMemoryError: bitmap size exceeds VM budget

So I've got a lazy image loader for my ListView. I also use this tutorial for better memory management and have SoftReference Bitmap images stored in my ArrayList. My ListView works loads 8 images ...
7
votes
2answers
918 views

Fast 24-bit array -> 32-bit array conversion?

Quick Summary: I have an array of 24-bit values. Any suggestion on how to quickly expand the individual 24-bit array elements into 32-bit elements? Details: I'm processing incoming video frames in ...
7
votes
6answers
464 views

Find all ways to insert zeroes into a bit pattern

I've been struggling to wrap my head around this for some reason. I have 15 bits that represent a number. The bits must match a pattern. The pattern is defined in the way the bits start out: they ...
7
votes
2answers
4k views

Masking a Drawable/Bitmap on Android

I'm currently looking for a way to use a black and white bitmap to mask the alpha channel of another bitmap or Drawable on Android. I'm curious as to what the best way to do this is. I certainly ...
7
votes
2answers
4k views

How to blit() in android?

I'm used to handle graphics with old-school libraries (allegro, GD, pygame), where if I want to copy a part of a bitmap into another... I just use blit. I'm trying to figure out how to do that in ...
7
votes
5answers
1k views

C header file with bitmapped fonts

I need to do some rudimentary text rendering to a pixel buffer, and I think that having a table indexed by char with the representation of the letters as a binary array would be more than enough... ...
7
votes
8answers
13k views

OutofMemoryError: bitmap size exceeds VM budget (Android)

Getting an Exception in the BitmapFactory. Not sure what is the issue. (Well I can guess the issue, but not sure why its happening) ERROR/AndroidRuntime(7906): java.lang.OutOfMemoryError: bitmap size ...
7
votes
2answers
18k views

Android: How to overlay-a-bitmap/draw-over a bitmap?

I have two questions actually: Is it better to draw an image on a bitmap or create a bitmap as resource and then draw it over a bitmap? Performance wise... which one is better? If I want to draw ...
7
votes
1answer
2k views

Is it better to use Bitmap or EncodedImage in BlackBerry?

In BlackBerry, is it better to use the Bitmap class or EncodedImage in terms of memory usage and performance? Are there any specific tips on using these classes?
7
votes
4answers
4k views

How to concatenate icons into a single image with ImageMagick?

I want to use CSS sprites on a web site instead of separate image files, for a large collection of small icons that are all the same size. How can I concatenate (tile) them into one big image using ...
6
votes
3answers
349 views

Android - recover from low memory condition

I'm developing an application with very intense image processing where I have multiple ListFragments in the horizontal FragmentStatePagerAdapter. I aggressively employ practically every trick and ...

1 2 3 4 5 46