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 ...
1
vote
1answer
22 views
Android application tutorials activity
The following is my instructions page for the application that is being worked upon. For now I am just display this image via the ImageView using the scaleXY property to make it pan out throughout ...
1
vote
1answer
8 views
How to keep image quality same in BitmapFactory
I've converted an bitmap image into string to save it:
............
Bitmap photo = extras.getParcelable("data");
ByteArrayOutputStream baos = new ByteArrayOutputStream();
...
0
votes
2answers
15 views
How to save cropped image uri in shared Preference
I have selected an image and cropped it. But I want to save the cropped image uri in shared preference so that it can be showed later. I know how to save in shared preference, but the problem key is ...
0
votes
0answers
24 views
how to add item into Gallery using Bitmap
I want to send image between activityes and put into Gallery.I can converted item from Bitmap ito bytes and open on next activity.But I don't know how to put converting item into new Gallery and how ...
0
votes
0answers
12 views
Converting a pixel data array to a bitmap and a iplimage?
I got a little issue, i got to do a compression/decompression system for videos, so each videos is split into frames
I'm testing to compress and decompress only one frame, for compressing i'm doing ...
-2
votes
1answer
37 views
How to create circle with bitmap c#
Hello How to draw a circle with the bitmap. That is, I need to get the image of the circle, using it to draw something.
1
vote
1answer
34 views
Why am I getting “Cannot draw recycled bitmaps”?
I am taking a bitmap, creating a new one from the original and then setting the new one to an ImageView, when I recycle the original I get that error, but I am not drawing the original? For more ...
0
votes
2answers
34 views
Color Bitmap file to Black and White
I need to convert a color Bitmap file to Black and White.
I understand that When i read a row of pixels it needs to divide by 4. First question, why? :)
If it doesn't divide by 4, i need to add ...
0
votes
1answer
18 views
Windows CF_DIB to CF_BITMAP in clipboard
I have no practice with windows programming at all, but now I have a problem I want to fix in some program. I need to place an image to windows clipboard and I have raw pointer to valid DIB (device ...
0
votes
0answers
30 views
Check if uploaded image is CMYK in ActionScript 3.0
Is there any way to figure this out which user uploaded image in our flex project is RGB or CMYK?
Something like using byteArray and check the specific place of CMYK/RGB header on it...
0
votes
1answer
22 views
how to display a byte array as image
I converted image into grayscale then read the pixels like this
for (int i = 0; i < image.getHeight(); i++)
{
for (int j = 0; j < image.getWidth(); j++)
...
0
votes
1answer
34 views
How do I set an onClickListener for a bitmap? android java
Is it possible to set an onClickListener for a bitmap while programming an Android app in java? I tried using the same code as a button but eclipse displayed an error that a bitmap was not valid. ...
0
votes
0answers
12 views
Static part of Custom View draw with shapes or draw ready made bitmap
I'm implementing a Custom View. The view is mostly static but reacts to touch gestures by moving text and basic lines.
I know that if I draw the background of the widget on the canvas using shapes, ...
0
votes
1answer
32 views
Android Bitmap 8-bit pixels instead of 32-bit ones?
I've got some raw picture-files (grayscale-sensordata) where each byte is one pixel grayscale-value. So all pixels are 8-bit values. In my native Code, I work on that (raw) bytes (image processing), ...
0
votes
0answers
15 views
Bitmap too large to be uploaded into a texture after scaling it down
I've made an application which has a big background. It runs perfectly on a Nexus 7, but on my Galaxy Nexus the background is gone and gives in the logcat the error: Bitmap too large to be uploaded ...
0
votes
0answers
32 views
Add view with canvas
I wanna insert a view (with canvas, bitmaps and so on) in a view group
The code below is on onCreate and does not run (the screen is blank).
v1 = new SampleView(this);
gv = (ViewGroup) ...
0
votes
1answer
13 views
android noise effect on bitmap
I am writing some function to add noise effect on bitmap. I found similar question: Add noise effect to a drawing
Bitmap outputBitmap = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), ...
0
votes
2answers
42 views
Android Bitmap OutOfMemoryError [duplicate]
I'm having an OutOfMemoryError in my VSD220 (It's a 22" Android based All in one)
for (ImageView img : listImages) {
System.gc();
Bitmap myBitmap = ...
0
votes
2answers
18 views
File browser out of memory
I am trying to load the thumbnails for videos in a file browser but its causing me to run out of memory.
public class Filea {
private Bitmap VideoIcon;
public Bitmap getVideoIcon() {
return ...
0
votes
1answer
26 views
How do I apply generated normals to a bitmap?
I am going "backwards" for terrain generation: I am procedurally generating a terrain and its normals. I am then generating a bitmap of the terrain to be used as a 2D map. This is all working ...
0
votes
0answers
13 views
WPF alternative to SetStyle(ControlStyles.Opaque)
I am rendering images from a web cam to the screen.
In windows forms I call SetStyle(ControlStyles.Opaque) to avoid from flickering.
What it does is (from MSDN): If true, the control is drawn opaque ...
1
vote
1answer
31 views
Loading Bitmaps and display in ImageView Efficiently
My program is to decode a bitmap and display it.
The origin decode code and display code works perfect on my pc.
When I use the code in my android device, the code also can decode the stream.
The ...
0
votes
1answer
14 views
Load Texture from File in HLSL
I want to blend (in a PostProcessing-Shader) the camera output with a texture. Is there a method to load a texture? something like
texture mytexture = "file.bmp"
sampler2D smp = sampler_state {
...
0
votes
0answers
14 views
measure all child views of RelativeView before drawing
I have method, which should create a Bitmap from the RelativeLayout. My RelativeLayout creates dynamically and place all input Views into the circle. It looks like this:
public class CircleView ...
0
votes
1answer
31 views
Resize the bitmap
Im my project I am capturing the image from Camera app and displaying image in listview by using following code .
MySimpleCursorAdapter:
public class MySimpleCursorAdapter extends SimpleCursorAdapter ...
0
votes
0answers
23 views
How to loop single bitmap image in canvas android?
I want to show a single image that can scroll horizontally on touch event.If right end of image reached, the same image have to show from beginning same as marque effect.
I have use canvas to draw ...
0
votes
0answers
34 views
Different result of the Application between Android Emulator and Android Phone
I need a help with this Android application! I'm at very beginning in developing on Android and for a school's project I have to create an App that scan qr's codes and shoot photo.
I don't own an ...
0
votes
1answer
35 views
Pass a Bitmap from Project to another
I have two projects linked to each other As it shown in this link. Let's say ProjectTwo Linked to ProjectOne.
I want to pass an image that ProjectOne owned .I create a static method to pass it:
...
0
votes
3answers
32 views
Android - Convert String to byte[]
I want to convert the string of "icon" to byte array and than to convert it to Bitmap. The problem is the image in the emulator is not displaying. I suppose I'm not doing right but I know why. I ...
0
votes
1answer
35 views
set bitmap which was created from RelativeLayout to imageView
I have RelativeLayout and I want to convert it to the Bitmap like this:
public static Bitmap getBitmapFromView(View view) {
if (view != null)
{ Bitmap returnedBitmap = ...
0
votes
0answers
29 views
How to refresh image in cell of Gridview Android
I have a view (LinearLayout) contain a gridview.
Cell of gridview contain Imageview
In getView in adapter load image from sdcard to imageview
My problem is imageView don't refresh after set bitmap.
I ...
1
vote
1answer
46 views
The Tesseract OCR engine isn't able to read the text from an auto generated image, but can from a CUT in MS Paint
I'm using a .NET wrapper for the Tesseract OCR engine. I have a large document that is a PNG. When I cut out a section of image in MS paint and then feed it into the engine, it works. But when I do it ...
0
votes
1answer
46 views
how to solve RunTime error with imageView in android
I still have the problem any body help?? please i don't have time. Tommorow is my last graduate project presentation.
(java.lang.RuntimeException: Unable to start activity ...
0
votes
1answer
16 views
bmpFactoryOptions don't work, no idea why
I use the following code to get a Blob back from my SQLite database and get back a bitmap. My problem is that the reconstructed bitmap is larger than the original picture (input). It seems that my ...
0
votes
1answer
31 views
Generated Bitmap has only zero values
I'm trying to decode a byte array into a bitmap to be used in android.
The byte array that i use for decoding is generated by an OpenGl conmmand named GlReadPixels and the data inside is correct.
...
0
votes
0answers
16 views
Bitmap to Mat gives wrong colors back
So I make a bitmap from a blob with the next code:
byte[] blob = contact.getMP();
ByteArrayInputStream inputStream = new ByteArrayInputStream(blob);
Bitmap bitmap = ...
1
vote
2answers
23 views
Saved Bitmap doesn't appear on SD Card
I am working on an app in which I would like to save some Bitmaps to the SD Card. I have looked at a lot of examples and other questions, and from that I have made the following code:
...
1
vote
1answer
43 views
Change bit depth from Bitmap
So I have an image with a 32 Bit depth, but when I make it into a blob for my SQLite database, and read it out again with the following code it only has a 24 bit depth (the quality is lower, i want it ...
-1
votes
0answers
34 views
Need to create a new bitmap filled with black Win32
The title is not entirely clear.
I am making a map editor that allows the user to create maps using tiles. The map files created will be used with another graphics library. That library supports ...
0
votes
0answers
20 views
Color changes when turning Blob from SQLite database to a bitmap and then a mat
So I have this image which i put in a Blob in my SQLite database
What I do next is read out the blob from the Database (so I turn the blob into a bitmap).
Then I turn this bitmap into a Mat (cause ...
0
votes
2answers
25 views
Android: image rotation not desire to resize
I have a code for rotate an ImageView, and good good.
The problem is that the size of image change in the rotate process and I desire that not happen.
The xml code of image
<ImageView
...
0
votes
1answer
30 views
android png from url has its transparency showing as black
I have tried loading a png-8 from a url to an imageview, but the transparency is lost and turns black.
So i tried a png-24 and same problem.
Here is the kicker, if I copy the image from the url, and ...
0
votes
0answers
20 views
Scaling to screen size, editing image and exporting with it's original size
I'm writing an android app that should load a picture from gallery and then the user will be able to add some predefined images(drawables) on the selected picture. They can drag, resize and rotate ...
0
votes
1answer
21 views
Finding working destructor for gcroot<Bitmap^> class in visual studio
Sorry for my english. I want to free memory that was used by gcroot objejct. Here is a simple example that returns me an error. On MSDN I found that there is a Dispose() method for Bitmap object. When ...
0
votes
0answers
11 views
How to double the height of a bitmap font with automatic anti-aliasing?
I am working on an embedded system that uses 8 pixel high bitmap fonts. In order to save memory I want to do double height fonts without storing an entire extra font. The font width will be the same ...
0
votes
0answers
18 views
Android SkImageDecoder::Factory returned null (Blob decoding)
I'm trying to decode a blob, from SQLite database in Android, to Bitmap in order to display it, but I always have the error : SkImageDecoder::Factory returned null.
I've searched answers to this ...
1
vote
0answers
18 views
Android FaceDetector.findFaces 100% CPU Time
I got this simple function
private PointF getFaceCenter(Bitmap faceBitmap){
PointF faceCenter = new PointF(faceBitmap.getWidth() / 2, faceBitmap.getHeight() / 2);
Face[] faces = new ...
-1
votes
1answer
44 views
Is it possible to make bitmap in TextView and showing in TableLayout?
I have bitmap scaled for show in TextView but how to add in TableLayout with row and coloumn?
tbl = (TableLayout)findViewById(R.id.TableLayout1);
tblrow = new TableRow(this);
public void ...
0
votes
1answer
20 views
Where to stop while caching Bitmap objects into memory in Android?
I have a ListView which shows many bitmap images (thumbnails) (downloaded, resized, 70% compressed jpeg)
I use a memoryCache to stop reading files from disk.
private static ...
0
votes
3answers
54 views
Saving photo in Android to sd card and show them in bitmap in other intent
I need a help with this Android application!
I'm at very beginning in developing on Android and for a school's project I have to create an App that scan qr's codes and shoot photo.
I have a problem ...





