MainActivity.kt
package com.cfsuman.kotlintutorials
import android.app.Activity
import android.content.Context
import android.graphics.*
import android.os.Bundle
import android.widget.*
import java.io.IOException
class MainActivity : Activity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
// get the widgets reference from XML layout
val imageView = findViewById<ImageView>(R.id.imageView)
val imageView2 = findViewById<ImageView>(R.id.imageView2)
// get the bitmap from assets folder
val bitmap = assetsToBitmap("flower103.jpg")
bitmap?.apply {
// show original bitmap in first image view
imageView.setImageBitmap(this)
// show sepia effect on bitmap
imageView2.setImageBitmap(sepia())
}
}
}
// extension function to get bitmap from assets
fun Context.assetsToBitmap(fileName:String):Bitmap?{
return try {
val stream = assets.open(fileName)
BitmapFactory.decodeStream(stream)
} catch (e: IOException) {
e.printStackTrace()
null
}
}
// extension function to apply sepia effect on bitmap
fun Bitmap.sepia(depth:Int = 20):Bitmap?{
var r:Int; var g:Int; var b:Int; var c:Int; var gry:Int;
val bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888)
val paint = Paint()
val matrix = ColorMatrix()
matrix.setScale(.3f, .3f, .3f, 1.0f)
val filter = ColorMatrixColorFilter(matrix)
paint.colorFilter = filter
Canvas(bitmap).drawBitmap(this, 0f, 0f, paint)
for (x in 0 until width) {
for (y in 0 until height) {
c = this.getPixel(x, y)
r = Color.red(c)
g = Color.green(c)
b = Color.blue(c)
gry = (r + g + b) / 3
b = gry
g = b
r = g
r += depth * 2
g += depth
if (r > 255) {
r = 255
}
if (g > 255) {
g = 255
}
bitmap.setPixel(x, y, Color.rgb(r, g, b))
}
}
return 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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/rootLayout"
android:background="#DCDCDC"
android:padding="24dp">
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="250dp"
android:layout_marginTop="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="Original Bitmap"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="@+id/imageView"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="0dp"
android:layout_height="250dp"
android:layout_marginTop="24dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="Sepia Effect"
app:layout_constraintEnd_toEndOf="@+id/imageView2"
app:layout_constraintStart_toStartOf="@+id/imageView2"
app:layout_constraintTop_toBottomOf="@+id/imageView2" />
</androidx.constraintlayout.widget.ConstraintLayout>
- android kotlin - Bitmap lighting color filter
- android kotlin - Bitmap porter duff color filter
- android kotlin - Bitmap change opacity
- android kotlin - Bitmap set alpha
- android kotlin - Full screen AlertDialog example
- android kotlin - Create spinner programmatically
- android kotlin - Spinner item separator programmatically
- android kotlin - Disable an item in Spinner
- android kotlin - Spinner text align center right programmatically
- android kotlin - Spinner text color programmatically
- android kotlin - Spinner selected item background color
- android kotlin - Spinner text size programmatically
- android kotlin - ConstraintLayout center in parent programmatically
- android kotlin - Underline TextView text programmatically
- android kotlin - Add view to ConstraintLayout programmatically