MainActivity.java
package com.cfsuman.androidtutorials;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.os.Bundle;
import android.app.Activity;
import android.widget.Button;
import android.widget.ImageView;
public class MainActivity extends Activity {
private Resources mResources;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Get the Resources
mResources = getResources();
// Get the widgets reference from XML layout
Button button = findViewById(R.id.button);
ImageView imageView = findViewById(R.id.imageView);
// Set a click listener for Button widget
button.setOnClickListener(view -> {
// Get the source bitmap to draw on canvas
Bitmap srcBitmap = BitmapFactory.decodeResource(
mResources,
R.drawable.rose_small
);
// Initialize a new Bitmap
Bitmap bitmap = Bitmap.createBitmap(
1400, // Width
1000, // Height
Bitmap.Config.ARGB_8888 // Config
);
// Initialize a new Canvas instance
Canvas canvas = new Canvas(bitmap);
// Draw a solid color on the canvas as background
canvas.drawColor(Color.LTGRAY);
// Initialize a new Paint instance to draw on canvas
Paint paint = new Paint();
paint.setAntiAlias(true);
paint.setDither(true);
paint.setFilterBitmap(true);
// Initialize a new Matrix instance
Matrix matrix = new Matrix();
// Set rotation on matrix
matrix.setRotate(
45, // degrees
(float) srcBitmap.getWidth() / 2, // px
(float)srcBitmap.getHeight() / 2 // py
);
// Draw the bitmap at the center position of the canvas
// both vertically and horizontally
matrix.postTranslate(
(float) canvas.getWidth() / 2
- (float) srcBitmap.getWidth() / 2, // dx
(float) canvas.getHeight() / 2
- (float) srcBitmap.getHeight() / 2 // dy
);
// Finally, draw the bitmap on canvas as a rotated bitmap
canvas.drawBitmap(
srcBitmap, // Bitmap
matrix, // Matrix
paint // Paint
);
// Display the newly created bitmap on app interface
imageView.setImageBitmap(bitmap);
});
}
}
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#DCDCDC"
android:padding="24dp">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Draw"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/button" />
</androidx.constraintlayout.widget.ConstraintLayout>