Android :: Converting Bitmap To Grayscale

May 20, 2009

I would like to convert a Bitmap to a grayscale array of bytes (one byte per pixel). At the same time I want to just crop at section from the middle. Having looked though the various api's it is not clear to me what the best way would be.

1) What is ALPHA_8? is that grayscale? I have a feeling that the grayscale effect should be done via some "saturation" on the paint object, right?

2) once I have the Bitmap in grayscale and the right size, what is the best way to get that to a byte[] of pixels (one byte per pixel)?

Android :: Converting bitmap to grayscale


Android :: Trying To Grayscale Bitmap?

Apr 20, 2009

I am trying to grayscale bitmap as follows, But it is crashing as soon as I run this method.

The problem is in last line. How can I assign "int" to "Color"? Or are there any better ways?

CODE:................

View 9 Replies View Related

Android :: Convert A Bitmap To GrayScale In Droid?

Jul 30, 2010

I am new to this site, and I come with a question about Android.

Is there any way to convert a Bitmap to grayscale? I know how to draw a grayscale bitmap (using canvas operations: http://www.mail-archive.com/android-developers@googlegroups.com/msg38890.html) but I really need The actual bitmap in gray colors (or at least something that could be converted to a bitmap later on).
Do I have to implement it by hand (pixel by pixel operations)?

I've searched a lot, and still could not find. Anyone knows a easy/efficient way to do it?

View 2 Replies View Related

Android :: Converting Bitmap To ASCII

Sep 17, 2010

I have a picture taken using the phone's camera and in bitmap format. I want to send it over HTTP usinf Http post in ASCII.Any idea how to do it?

View 4 Replies View Related

Android :: Converting A TextView - Bitmap - ImageView - Nothing's Showing Up

Nov 12, 2010

I started a test project just to get this down. No changes to main.xml. I want to create a widget-sized ImageView (80x100) that contains a Bitmap converted from a TextView. Yes, that sounds very roundabout but this is just for testing; in the end I want the ImageView to have a background image and multiple TextViews. I'm not sure exactly what I'm doing wrong, but nothing is being pushed to the screen.

Is it a problem with declaring the TextView/ImageView and passing it "this" in the constructor? Is it a problem with my layoutParams? Here is the code:

package com.doaf.testproject;

import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView; Code...
I'm relatively new to Android, and pretty lost with this one.

View 3 Replies View Related

Android :: Converting Binary JPEG Data To Bitmap

Sep 8, 2010

My app will have an SQLite database with some embedded JPEG images -- basically the binary contents of a JPEG file stored as a Blob in the database. Can someone point me in the general direction of where to start to figure out how to convert this "array of bytes" into a Bitmap object that can be further manipulated and displayed in an ImageView?

View 2 Replies View Related

Android :: Turn A Color Bmp To Grayscale?

Jul 5, 2010

I've seen this code on the web...

My questions are:
1. Is 'bmp' supposed to be the color bitmap I want to affect?
2. How do I get the 0-255 value of the grayscale?

View 1 Replies View Related

Android : Crop Bitmap Without Reading Entire Bitmap / Cannot Read Image Into Memory

Jul 21, 2010

I have a very large image and I only want to display a section the size of the display (no scaling), and the section should just be the center of the image. Because the image is very large I cannot read the entire image into memory and then crop it. This is what I have so far but it will give OutOfMemory for large images. Also I don't think inSampleSize applies because I want to crop the image, not lower the resolution.

Uri data = getIntent().getData();
Input Stream is = getContentResolver().openInputStream(data);
Bitmap bitmap = BitmapFactory.decodeStream(is, null, null);

Any help would be great?

View 3 Replies View Related

Android :: Create Mutable Bitmap From Camera - Draw Another Bitmap On Top - And Save It

Apr 2, 2009

I am 1) taking a picture and 2) then draw another Bitmap on top of it 3) then I store it

I am doing it as follows and it works on the emulator.

On the device I get a OutOfMemoryError: bitmap size exceeds VM budget android.graphics.Bitmap.nativeCopy(Native Method) android.graphics.Bitmap.copy(Bitmap.java:199) in the line copy the Bitmap to get a mutable Bitmap.

CODE:...........

What I am asking:

a) Is there a better way to do what I am doing? 1) take a picture 2) draw another Bitmap on top of it 3) then I store it

b) What is the best way to create a mutable Bitmap from the picture I just took with the camera?

In my app, resolution is not an issue. If it works better for small photos that would be fine.

View 3 Replies View Related

Android :: Want To Convert Image Captured By Camera To Grayscale?

Jul 8, 2009

I have a camera application that captures a 640x480 image.I want to convert this image to grayscale.I know I have to use the setSaturatio (float sat) in the ColorMatrix method to zero but I don't know how I can set it to grayscale.

View 3 Replies View Related

Android :: Turn A Color Drawable Into A Grayscale One (to Indicate Disabled State)?

Nov 24, 2009

What would be the right way to turn a color Drawable into a grayscale one (to indicate disabled state)?

View 3 Replies View Related

Android :: Apply / Convert Image From Colored To Grayscale Algorithm To Droid?

Oct 28, 2010

I am trying to use one of these algorithms to convert a RGB image to grayscale :

The lightness method averages the most prominent and least prominent colors:
(max(R, G, B) + min(R, G, B)) / 2.

The average method simply averages the values: (R + G + B) / 3.

The formula for luminosity is 0.21 R + 0.71 G + 0.07 B.
But i get very weird results ! I know there are other ways to achieve this but is it possible to do this way ?

here is the code...

View 4 Replies View Related

Android :: Overlay Bitmap - Draw Over A Bitmap

Oct 8, 2009

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 something transparent over a bitmap, how would I go about doing it?

If I want to overlay one transparent bitmap over another, how would I do it?

View 1 Replies View Related

Android :: Draw A Bitmap Rotated Onto Another Bitmap

Mar 22, 2009

My goal is the draw a bitmap onto another bitmap but rotated 90 degress. whats the most efficient way to do that. My current method is as follows which is horribly bad because it creates a new bitmap every time.

CODE:.....................

View 4 Replies View Related

Accessing Grayscale Data From A Photo?

Oct 7, 2012

I am wondering how do I go about writing code (or be directed to any existing relevant code), that allows me to average the grayscale values above a threshold (Otsu threshold) from a JPEG photo taken from an android device camera.

View 2 Replies View Related

How To Get Grayscale Pixel Data From Image Or Preview

May 8, 2013

What I am needing is a method to get grayscale pixel data from an image or preview. I am not interested in saving the picture as a jpeg etc, just need the grayscale data.

I am aiming at API 10 (as this is the device available for testing).

On top of this, I am not having any luck getting the camera to work on the Eclipse emulator.

View 3 Replies View Related

Android :: Draw Shape Or Bitmap Into Another Bitmap - Java - Android

Jun 22, 2010

I want to draw a shape(many circles particularly) into a Specific Bitmap. I have never used canvas / 2D graphs etc. As i see it i create a Drawable put the bitmap in it then "canvas-it" to the shapes i want etc.

View 1 Replies View Related

Samsung Captivate :: Converting DVD To Android

Jul 21, 2010

I'm new to Android and smartphones in general, have lots of PC experience.What is the best method to convert a movie (DVD) so it can be played on my Captivate?Please mention details when answering, greatly appreciate it.

View 2 Replies View Related

Android :: Same Value When Converting From String To Float

Jul 8, 2010

I have a JSON Object with a latitude and longitude String on which I get the values doing this: String latitude = picInfo.getString("latitude"); String longitude = picInfo.getString("longitude");Then I convert them to floats like this: float latInt = Float.valueOf(latitude).floatValue(); float longInt = Float.valueOf(longitude).floatValue();And place them on a GeoPoint like this: GeoPoint X = new GeoPoint((int) (latInt*1E6),(int) (longInt*1E6) ); Debugging this values I can see JAVA approximates the values, is there anyway to keep them exactly the same?

View 6 Replies View Related

Android :: Converting Canvas To Drawable?

Sep 5, 2009

Is it possible to convert a Canvas to Drawable?I may be really off in my solution, so if you have a better suggestion, please do tell me. This is what I'm trying to do.I'm trying to create a custom RadioButton. to set different states of the radio button, I need to use this parameter and one of the parameter to addState is Drawable. I know I can easily provide an image file and use it as a Drawable, but I want to do some image manipulation to the image before using it.There is a tutorial in ApiDemo called AlphaBitmap. It uses the onDraw method of a View to change a PNG file to full red and draw something with a gradient. So I customized it to shade an icon with gradient. So the problem now is that this is a View, and the View works perfectly fine if I add this View to the main view. But i want to convert this View to Drawable so I can use it as one of the parameter in addState. What I really want to achieve is to have different colour shades for different state of the RadioButton without providing different images to do so.

View 6 Replies View Related

Android :: Converting Milliseconds To Minutes

Aug 12, 2010

Is there a way to convert milliseconds to minutes using java.util.concurrent.TimeUnit?
This answer seems to suggest that you can use a TimeUnit.MILLISECONDS.toMinutes() method, and the documentation suggests that you could use the TimeUnit.MILLISECONDS.convert() method with TimeUnit.MINUTES - the problem is that neither TimeUnit.MINUTES or TimeUnit.MILLISECONDS.toMinutes() seem to actually exist.

View 2 Replies View Related

Android :: Converting Iphone Games

Aug 31, 2010

Is There Anyway we can change .ipa to .apk?

View 2 Replies View Related

Android :: Converting Java Code

Oct 10, 2010

I Have a Java application and I need to convert it to an Android application is there any resources to show how ? in Android developer site I didnt found anything like that! I need to use the Java methods and classes in android ,How it can be done?

View 1 Replies View Related

Android :: J2ME Converting/translation

Apr 25, 2010

I want to know if exists a converter for a j2me source-code to android. Listen, itīs not a runner, like a midp runner for android, it īs a converter for a source code. A tool for translate a source code for a new plataform, from j2me to android.

View 6 Replies View Related

Android :: Converting MP3 To EPUB Format Possible?

Sep 14, 2010

I it possible to Convert MP3 to EPUB format ?

View 7 Replies View Related

Android :: Text Messaging Converting To Mms

Jan 8, 2010

Got a T-mobile pulse with unlimited txt's and data.

When i type a txt message, as soon as i hit 4 txt,s in length a message flags us saying 'converting message to mms'. Which it promptly does. If i send the message it does indeed send it as an mms. Anything under 4 in length is sent as a txt message

I spoke to T-mobile and they said update software to fix it. Which i did. And it did not fix it.

Phoned them back and they did not have a clue.

Not being able to send long text messages without being charged mms service rate.

View 2 Replies View Related

Android :: Downloading Images And Converting To Bitmaps

Jun 16, 2010

I am working on an application that downloads images from a url. The problem is that only some images are being correctly downloaded and others are not. First off, here is the problem code:

public Bitmap downloadImage(String url) {
HttpClient client = new DefaultHttpClient();
HttpResponse response = null;
try {.......................................

So what I have is a method that takes the url as a string argument and then downloads the image, converts the HttpResponse stream to a bitmap by means of the BitmapFactory.decodeStream method, and returns it. The problem is that when I am on a slow network connection (almost always 3G rather than Wi-Fi) some images are converted to null--not all of them, only some of them. Using a Wi-Fi connection works perfectly; all the images are downloaded and converted properly. Does anyone know why this is happening? Or better, how can I fix this? How would I even go about testing to determine the problem?

View 2 Replies View Related

Android :: Benchmarks On J2MEPolish Converting A J2ME App

Oct 20, 2009

J2ME Polish claims to support porting of existing J2ME applications to Android. Has anyone tested the quality of such a port.

View 1 Replies View Related

Android :: Converting Base64 String To Image

May 25, 2010

Is there any way that I can convert a base64 String to image in Android. I am receiving this base64 String in a xml from the server connected through socket.

View 1 Replies View Related

Android :: Converting Accelerometer Readings To Degrees

Apr 20, 2009

Does anyone know how to convert the accelerometer readings from g's to degrees?For example, if I want to use the x-axis readings and measure the tilt of the phone, flat would be 0g = 0 degrees and a 90 degree tilt to the right would be 1g (9.80665 m/sec^2).I can't come up with a formula for say 20 degrees or 45 degrees. Any help would be greatly appreciated.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved