Tagged Questions
1
vote
0answers
67 views
How to translate and rotate in bitmap in android?
I am trying to translate and rotate a bitmap in android ImageView. But I can't get the result. Any pointers will be helpful.
int width = mb.getWidth();
int height = mb.getHeight();
// ...
0
votes
1answer
64 views
Android: Using matrix to draw bitmaps
im trying to learn drawing bitmap on canvas with the usage of
drawBitmap(Bitmap bitmap, Matrix matrix, Paint paint);
Because i need one of my pngs to increase its size nearly every frame, i ...
0
votes
4answers
74 views
ImageView rotate without recreating the bitmap
I want to rotate an ImageView image. Here is my code:
Matrix mat = new Matrix();
mat.preRotate(90, ivImage.getWidth()/2, ivImage.getHeight()/2);
ivImage.setScaleType(ScaleType.MATRIX);
...
3
votes
2answers
137 views
Stretch Bitmap at specific corner
Is it possible to stretch a Bitmap at a specific corner? The picture below shows my intention:
I shoot a picture with the camera, detect the corners in the image and want to transform the content. ...
0
votes
1answer
56 views
Converting a bitmap to an matrix
I've been trying to convert a bitmap object to a matrix of int.
I drew the letter 'C' in paint on a blank white sheet and the program was supposed to initialize the arr in place (x,y) with '0' if the ...
0
votes
0answers
119 views
converting bitmap to Mat ( java, android)
I am facing a problem in converting bitmap to Mat (thru highgui)
I got the image by using built-in android camera API. What iIneed to do is capture image from camera, change that bitmap to Mat, then ...
1
vote
0answers
79 views
Using a sprite sheet and Matrix to draw to Canvas
In my app I want my sprites to rotate based on the direction they are heading, this is already done nicely with a Matrix.
However, now after trying to implement some sprite animation, I have realised ...
0
votes
0answers
88 views
Cropping rotated bitmap
I have an app where you can rotate images around by twisting with your fingers and you can move the app by dragging it. You can also stretch and squeeze the image. I have had much problems with memory ...
2
votes
2answers
130 views
make visual clone of displayObject that's nested within other displayObjects, and add the clone to the stage layer in the same location, rotation, etc
I want to be able to grab a copy of a DisplayObject that is nested within other transformed DisplayObjects (rotated, scaled, stretched objects), and be able to stamp it back into the same visual ...
3
votes
1answer
150 views
Generating rotated bitmaps without resizing
I'm trying to build a ring from twenty copies of a single image, which is a 1/20th slice of the full ring. I generate bitmaps that are this original image rotated to their correct degree amounts. The ...
0
votes
2answers
140 views
Rotating a bitmap 90 degrees and saving
all! I'm at a total loss here with this question. It may have been answered, but I can't find anyone asking for precisely what I need.
I have a jpeg file saved to the SDCARD, and want to ...
1
vote
0answers
104 views
How to find the end of image while dragging in imageview
I have a imageview and using bitmap i'm displaying the image. Pinch zoom is done by matrix. For zooming i'm using "Matrix.postScale" method. While panning(dragging) the image i need to limit the ...
-1
votes
1answer
369 views
Converting a Bitmap image to a matrix
In C#, I need to convert an image that I have already converted to Bitmap in to a matrix of the size of the image's width and height that consists of the uint8 of the Bitmap data. In another word ...
0
votes
0answers
156 views
Android Rotation around alternate axis using matrix
I'm using the matrix.rotate(deg, fx,fy) method to rotate an image.
The image has an alpha channel and only has something visual in the right-hand corner. I want to rotate the canvas, create the new ...
1
vote
0answers
280 views
Cropping a Perspective Transformation of Image on Android
I'm trying to do a perspective transform on a bitmap that I capture via the camera. The user adjusts a bounding quad (as depicted by the white box) around a rectangular object. I then attempt to ...
0
votes
1answer
413 views
Skew and Rotate a bitmap in Android
I'm working with the matrix and canvases for the first time and haven't been able to find a tutorial on this. I have been able to achieve good results with rotating a Bitmap only or skewing a Bitmap.
...
0
votes
1answer
387 views
Android drawBitmap matrix rotation issue
I am trying to move (and rotate) a bitmap around in an S sort of shape with the following code:
onDraw: (which is called ~60 times a second)
Matrix temp = new Matrix();
...
1
vote
0answers
112 views
android positioning a Bitmap matrix
Can you explain to me why the px and py are not the actual coordinates that a Bitmap is to be placed at? I've been trying to understand the matrix but I only understand the scaled x and scaled y. ...
0
votes
1answer
301 views
android get bitmap width and height after scaled by matrix
I use matrix to scale a bitmap and draw it on canvas, after it's scaled, is there a way to get the scale with of the bitmap? and it's scale height?
sx += 0.5f;
matrix.setScale(sx, sx);
...
1
vote
2answers
823 views
Android Canvas drawBitmap function efficiency
I'm trying to display a bitmap on canvas using the matrix.
canvas.drawBitmap(currentBitmap, m_matrix, tempPaint);
but the result appears, image seems weird. After that I have shown it using ...
2
votes
1answer
241 views
Rotating a imageView around a point to some degrees
I want to rotate a imageview around a point. The imageview is referring to a drawable resource.
Then I am converting the imageview to bitmap so that i can draw it on canvas.
With the help of this i ...
1
vote
1answer
90 views
TouchImageView by MikeOrtiz used to edit original img
I am using TouchImageView by MikeOrtiz (https://github.com/MikeOrtiz/TouchImageView).
I want to add folowing functionality:
In TIV(TouchImageView) will be loaden preview of an image saved on SDCard, ...
2
votes
1answer
208 views
Android Drawing Path while Zoom and Pinch
I'm drawing bitmap and trying to do some drawing over it using Canvas.for drawing i'm adding
path whenever user draw something on it surface. I have implemented pinch Zoom and drag features over ...
0
votes
2answers
144 views
Rotating Bitmap Not Rotating
I have tried several hours to rotate a bitmap with no success. I have read numerous articles about this subject on this web site and it seems the prefered solution involves creating a temporary ...
0
votes
1answer
153 views
Canvas MotionEvent, bitmap does not get dragged as expected
I am using MotionEvent and Matrix to drag my bitmap but instead the bitmap gets "translated" to a nearby region (most of the times in the opposite direction of press). I want to be able to drag it ...
1
vote
1answer
221 views
While rotating an image its changing the actual position of the image
I tried to rotate the bitmap using Matrix , its working fine if the angle is 90degrees other than 90 degrees the bitmap position is getting changed.
Code Snippet:
Matrix matrix = new ...
2
votes
1answer
204 views
Free Transform Anrdoid Image
I would like to free transform an android image. I have gotten comfortable using a matrix to skew a bitmap see below (Just imagine the red shape is replaced with a bitmap or jpeg image):
What I want ...
0
votes
0answers
76 views
Bitmap containing Doubles in C#
I have an image which I would like to change over time. Each time i call a certain method I woul'd like to change the values in the bitmap with for instance 0.1, and when the value gets close enough ...
4
votes
1answer
1k views
Rotate bitmap data in AS3 180deg for export
I have a bitmap in AS3 flash and I am sending it over to javascript using a base64 encoded jpg string.
All that works great. I need to send the img over scaled down, and rotated 180deg. The scaling ...
1
vote
1answer
1k views
Android - paint rotated bitmap into a specific location on canvas
Ok maybe I am missing something here, but I am stuck for hours. I make an app where the user paints a dimension line over a picture. Now I want to paint also some selection points that show that the ...
0
votes
1answer
364 views
Rotate a sprite in game android
I want implement move a sprite from position (x ,y ) to position action_down (x1 , y1) .But I can't rotate it .Please help me .Thanks
This is my code:
public Sprite(GameView gameView, Bitmap bmp) {
...
0
votes
2answers
279 views
Rotate 'something that can be drawn on Canvas'
Hi have a problem regarding rotation. I'm currently drawing a few Objects on a Canvas. Currently this 'Objects' are just Bitmaps. After computing the rotation and passing it inside a Matrix, I'm ...
2
votes
4answers
455 views
Change Bitmap Colour with function
I need a function that will take a bitmap and return the bitmap with a changed colour. It needs to be fast and simple.
It's purpose is to change the colour, also it's a png with alphas.
I've had a ...
0
votes
1answer
301 views
Rotate an animated Sprite?
I want to be able to rotate a moving sprite which is also animated (atm has 3 images in a row). How would I go about this?
The current sprite moves around the screen and rotates.
So far I've got ...
1
vote
0answers
340 views
How to rotate Path the same way as a Bitmap
I'm finding very little documentation on how Path objects are manipulated, specifically rotation.
I have a painting app where I am trying to incorporate an "undo" feature. Every time the user's ...
1
vote
0answers
162 views
How to stop changes of bitmap size when it is Rotating?
I want to rotate bitmap in my app. When i am going to rotate bitmap, bitmap size also changed.Please help me..
I tried with following Methods,but failed:
1st Method:
public Bitmap rotate(Bitmap ...
1
vote
1answer
692 views
how to rotate bitmap in android on center point using matrix
I use matrix to rotate my image, it's working but i have some problem with new image bitmap.
The new bitmap have some space even though I have set the pivot. What should i do to rotate the image but i ...
1
vote
1answer
1k views
Rotate, Scale, and Translate Bitmap on Canvas
I am attempting to rotate, scale, and translate an image for drawing on a Canvas. However, the order is proving to be troublesome and I am having trouble getting everything to line up correctly.
...
1
vote
1answer
287 views
Android: Stretch Bitmap to Polygon
I have 4 points (no rectangle, just some polygon) and i want to draw (stretch, transform, skew, ...) a bitmap which fills that polygon... I guess it has to be done with a matrix - but is there a way ...
0
votes
0answers
271 views
Android Percentage Scaling Function
Hello wonderful people at stack overflow (again)
I'm trying to create a function that scales the image on the screen to a percentage of the screen size.
_width and _height are the screen's ...
1
vote
2answers
2k views
Android: ImageView Rotation Scale
I have an imageView and I am basically trying to make a thermometer style gauge. I have added an image below for testing and I am basically trying to rotate the image. The first picture has the image ...
0
votes
3answers
2k views
How to rotate the image without changing its size?
I am developing an android app where I have to rotate a circular image around another circular image, but when I am running this the size of my circular image gets automatically changing continuously. ...
0
votes
1answer
399 views
Android Bitmap Transformation Math
I need to combine 2 images into one. Basically all i need to do is to overlay one of them on top of the other in the center of the image. This needs to work on all major android devices.
I have ...
1
vote
2answers
615 views
Show portion of Bitmap image on canvas in Android
I am trying to build a Magnify tool in my Android app. For this, I have an ImageView, which I converted to Bitmap (with some zoom/scale factor).
imageView.setDrawingCacheEnabled(true);
Bitmap ...
4
votes
1answer
228 views
Why sometimes Bitmaps are the same objects?
In my code I'm doing something like this:
public void doStuff() {
Bitmap scaledBitmap = decodeFileAndResize(captureFile);
saveResizedAndCompressedBitmap(scaledBitmap);
Bitmap ...
9
votes
1answer
3k views
Looking for an explanation of post/pre/set Translate (in Matrix object) and how to use them
The documentation is pretty vague as to what is actually happening when these methods are used. Can someone point me to a good tutorial/explanation of how Matrix actually affects the Bitmap that it's ...
4
votes
1answer
229 views
Could someone please explain the Matrix (Mr.Anderson)?
I'm pretty new to manually manipulating images, so please bear with me.
I have an image that I'm allowing the user to shrink/grow and move around.
The basic behavior works perfectly. However, I need ...
0
votes
1answer
669 views
How to move bitmap to touched position with SurfaceView?
I'm trying to move bitmap picture from some point to point where I touched... but things not going well.
Render.java (extends Thread class)
public void run() {
Canvas canvas;
while (runFlag) ...
1
vote
0answers
310 views
How to rotate a bitmap in android in 2 Directions
I know how to rotate a bitmap clockwise or counter-clockwise. Now I want to rotate a bitmap clockwise and diagonally at the same time i.e. in two directions at the same time. How can I do this?
0
votes
0answers
967 views
android Flipping Bitmap using Matrix causes OutOfMemoryError
I am having this problem both in the emulator and on android phones with high resolution screens:
09-24 21:59:01.772: ERROR/AndroidRuntime(341): FATAL EXCEPTION: Thread-8
09-24 21:59:01.772: ...




