-3
votes
0answers
26 views

Android - Use effect for ImageView or bitmap [duplicate]

I found this post with no answers about the EffectFactory. I googled a lot but couldn't find any tutorials on how to put an effect on an ImageView or - like the post - use it for a bitmap. The class ...
0
votes
0answers
23 views

Android Java, draw on a scaled canvas

i'm developing an android drawing application, it has a relativelayout with a custom view in it for drawing with. So far it all works except when I scale the canvas the drawing happens in the wrong ...
1
vote
2answers
46 views

Android - Set ImageView to URL

I am trying to set an Imageview to a URL. Below is my code protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); ...
0
votes
1answer
25 views

Android Bitmap change Hue

I have got a Android bitmap and i'm trying to change the HUE of the image, as the image is a red block, I want to change that block to green by just changing the HUE, but I can't seem to find any code ...
0
votes
0answers
26 views

Android MySQL Write Resultset to Array and then to gridview

I have MySQL Table with image blobs and now I want to retrieve them and write them to an array to later show them in gridview. But my problem is that the while loop never ends. Here are some ...
0
votes
0answers
9 views

ResponseCache put never called

I am trying to cache images in an android app with this solution Android image caching. I have already implemented a specific ResponseCache and overriden the get and put methods. Despite that, images ...
-5
votes
0answers
24 views

How do I implement bitmap fonts in Java? [closed]

Recently I have started a project(game) and would like to use bitmap fonts instead of the basic fonts you get. I have tried once before but I decided to start again from scratch, and was hoping if you ...
1
vote
1answer
34 views

Redimension image on android

I have a fuction that resize the image in fuction of the ideal proportion between the height and width for my app the problem is the quality of the image when i try to resize the image it lose a lot ...
0
votes
1answer
30 views

Adding a round frame circle on rounded bitmap

Im trying to create a round frame around my bitmap! With this code im able to make my bitmap round: public static Bitmap getRoundedCornerBitmap(Bitmap bitmap) { Bitmap output = ...
1
vote
1answer
42 views

how to send an object that contains an image to server via json

I have an Object Student that contains : int studentId; String name; byte[] picture; I want to send it to server. I tried to send it via json, but the object can't be converted to json because ...
1
vote
1answer
40 views

How resize image from file?

Im trying change size of images in my folder. I wrote this: FileOutputStream fos = new FileOutputStream(fullPath); BitmapFactory.Options optsorg = new BitmapFactory.Options(); optsorg.inSampleSize = ...
0
votes
0answers
37 views

Android dropshadow on bitmap with rounded corners

so I am currently using this code for making circular bitmaps: public static Bitmap getRoundedCornerBitmap(Bitmap bitmap) { Bitmap output = Bitmap.createBitmap(bitmap.getWidth(), ...
0
votes
3answers
65 views

Load bitmap into canvas and draw over it

I like to make an app, something like a little paint, I have to get a bitmap, draw it on a canvas and next, draw over it (with figer)... So, I actually have this code: import java.io.File; import ...
0
votes
1answer
34 views

Reading from input stream

I am developing a library for my Android application where I am appending extra info to the end of a PNG image. I am creating a DataOutputStream variable and writing extra info to the end of it to ...
0
votes
1answer
65 views

Printing an Image using a Bluetooth Thermal Printer From an Android App?

I have been trying to get a print of an Image but I have not been successful so far.The printer is a locally manufactured 2" thermal printer having a printing resolution of 8dots/mm, 384dots/line, 203 ...
1
vote
1answer
48 views

Android: Get height/width from byte array or file

I have an image that is stored as a byte array (can also be accessed from Android directory as a .jpg) and I'm trying to get the width and height of the image. I've tried to use javax.imageio however ...
-4
votes
0answers
23 views

How can I display Bitmap in ListView [closed]

if (temp[i].getPath().endsWith(".apk")) { String filePath = temp[i].getPath(); Log.d(LOG_TAG, filePath); PackageInfo packageInfo ...
0
votes
1answer
40 views

bitmap rotation makes the image bigger each time is executed

i have this simple function: private Bitmap rotateImg(Bitmap b){ Matrix bMat = new Matrix(); bMat.preRotate(30, b.getWidth()/2, b.getHeight()/2); return Bitmap.createBitmap(b, 0, ...
0
votes
4answers
32 views

Android: Saving Bitmap to phone storage

I'm having a problem saving a bitmap to the phone storage. It seems as if I can't create a new file. I get the exception--> java.io.Exception: open failed: EAccess (Permission denied) at ...
0
votes
1answer
24 views

Android - Continuously draw shapes to random locations

I'm a little new to android animation. I'm working on a project which places a picture of a ball at a random location -after which it will move in circle. I've been successful thus far but now I would ...
0
votes
0answers
32 views

Trying to upload image from android app to php

I want to make an image upload to a php server and i have problems my app is collapse and i want to know what is the problem I think the problem is with the exception because when i debug the code ...
0
votes
1answer
55 views

Move object in a circle from random location

This is about the third time I've asked a question like this. I've already read all the similar questions and the previous help was useful but this time I want to add a new feature to this app. I have ...
0
votes
1answer
36 views

moving an object in a circle - android

I posted this question yesterday, I got some useful help but was unable to solve the problem. Just figured I'd keep trying. Ok. I'm trying to make a ball move in a circle on a canvas in Android. ...
0
votes
3answers
60 views

Trouble making object move in a circle

I'm new to animation in android. I'm working with a tutorial I have found on youtube. The app draws a picture of a ball on a canvas and then moves diagonally. I'd like to make the ball move in a ...
0
votes
1answer
44 views

Java Bitmap reading

I have this project where you first load a bitmap and then you read each pixel to draw the bitmap out. This is what I have so far and this includes only reading the bitMap file which I suppose I did ...
0
votes
1answer
49 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
1answer
64 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
26 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
1answer
87 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 ...
0
votes
0answers
26 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
1answer
63 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
1answer
27 views

Need to ImageView to download image, not use cache

I have and imageview that downloads a bitmap: InputStream in = new java.net.URL(urldisplay).openStream(); bm = BitmapFactory.decodeStream(in); The imagview then scales the image: ...
7
votes
2answers
216 views

Rendering a small region of large Bitmap is time consuming

I've got the following code. this.getGame().getGraphics().drawBitmap(Assets.playScreen_LaserBeamAnimation, new Rect(0, 0, 100, 750), new Rect(0, 0, 100, 750), null); ...
0
votes
1answer
75 views

How can I load a bitmap image and manipulate individual pixels?

I want to load a single large bitmap image from a file, run a function that manipulates individual pixels and then re save the bitmap. File formats can be either PNG or BMP, and the manipulating ...
0
votes
2answers
112 views

Android: Resizing Bitmaps without losing quality

i've really searched through over the entire web before posting. My problem is that i cannot resize bitmap without losing the quality of the image (the quality is really bad and pixelated). I take ...
0
votes
1answer
73 views

Memory vs Performance, which would be best?

I need to take an image, scale it, mask it, add a background in case some of it is transparent and then add an overlay image. To do this I've written the following: Canvas canvas = new Canvas(); ...
0
votes
1answer
45 views

Reading BITMAPFILEHEADER and BITMAPINFOHEADER from a BitMap

I am converting a C++ Win32 app to Java (in linux) I need to read BITMAPFILEHEADER and BITMAPINFOHEADER of bitmap , how could I do this ? I find a jna (java native access) library which is ...
1
vote
0answers
54 views

Fullscreen Rotating Background Image

Developing an app for Android and I'm required to have a fullscreen image rotate (spin around infinitely, pivoted at the centre of the screen) in the background. I have tried rotating the ImageView ...
2
votes
2answers
54 views

Java Android Bitmap references

I am creating this Android project with Java. However, I am wondering a bit how far the references with some Bitmap methods will go. I have an originally Bitmap just like: Bitmap originalBitmap = ...
0
votes
1answer
65 views

Android App - Drawing Bitmap from Activity

I am trying to draw a simple .png file to the screen. I am using the following code: public class EditMindMapActivity extends Activity { private Button HomeButton; private Button SaveButton; ...
0
votes
2answers
69 views

How to create a bitmap with information in every pixel?

I'm creating a google maps application on Android and I'm facing problem. I have elevation data in text format. It looks like this longtitude latitude elevation 491222 163550 238.270000 491219 ...
-3
votes
2answers
97 views

Read bitmap pixel color in java/libgdx [closed]

I am trying to generate a game map based on a bitmap image. My idea is to create a different object depending on the color of each pixel. The problem is, I cannot figure out a way to read the bitmap ...
0
votes
0answers
80 views

Android GPUImage Library

In iOS, I am calling this filter function to get the image result. UIImage filteredImage = [[[GPUImageAmatorkaFilter alloc] init] imageByFilteringImage:imgOriginal]; The return is UIImage, so is ...
0
votes
0answers
72 views

How To Save Long Webpage as multiple image in android?

I am working on task where i want to convert web page into either pdf or image.i tried for web to pdf conversion but i dont want to send web page to other url and other options i didn't get, so i ...
0
votes
1answer
98 views

Android bitmap to ByteArray and vice versa returns null?

I am trying to allocate direct bytebuffer from java, fill it from bitmap and create bitmap from that buffer. But as a result I receive null. BitmapFactory.Options options = new ...
0
votes
1answer
91 views

pass bitmap reference from java to C++?

I'd like to create a bitmap in java, pass it's reference and manipulate it with c++ and see the result in java. Particularly, I tried the following, but no result: JNIEXPORT void JNICALL ...
0
votes
2answers
147 views

Convert relative layout to bitmap and save it to phone gallery with it's child element

I am trying to convert RelativeLayout to bitmap and want to save it to phone gallery with it's child element. But when I am saving it, only one image is saved in gallery and the other child are not ...
-2
votes
2answers
76 views

Image loaded from a PHP script isn't displayed in ImageView

I want to fill an ImageView with an image saved on my localhost. I can display it in a browser fine but it doesn't get displayed in my ImageView. PHP script to display image: <?php ...
0
votes
2answers
134 views

How to convert Image to Bitmap form java application to android device

I wrote a java application that creates some Images from a webcam and their format is java.awt.Image. I want to show those images on my Android device however, ADK doesn't include java.awt. I want ...
0
votes
1answer
146 views

Android Bitmap scale for ImageView, fill view not fit view

For exmaple, say I have an ImageView say, 300w by 200h. I will be using various different bitmap sizes and so what I want to do is to display them fully within the imageview. BUT without making them ...

1 2 3 4 5 9