Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9203493
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T23:29:08+00:00 2026-06-17T23:29:08+00:00

I want to programmatically blur and unblur images in Android. I hear that android

  • 0

I want to programmatically blur and unblur images in Android.

I hear that android flag “blur” is no longer supported after API 14 , but I wanted to use Java methods anyway. My main problem is manipulating the bitmap from an Imageview drawable.

How would I get the bitmap from an imageview and manipulate it (will probably use gaussian blur) and set it back to the imageview? I think the process involves extracting the drawable, converting the drawable to a bitmap, doing my blur method on that bitmap and then doing the reverse till it is set to the imageview again

but I would like that process spelled out, thank you

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T23:29:09+00:00Added an answer on June 17, 2026 at 11:29 pm

    Following are the codes for implementing gaussian blur. May this can help you

    import android.graphics.Bitmap;
    import android.graphics.Matrix;
    
    /**
     * @author robert.hinds
     *
     * Wrapper class for the Android Bitmap - used by all filters
     *
     */
    public class AndroidImage {
    
        //original bitmap image
        private Bitmap image;
    
        //format of image (jpg/png)
        private String formatName;
    
        //dimensions of image
        private int width, height;
    
        // RGB Array Color
        protected int[] colourArray;
    
        public AndroidImage(Bitmap img){        
            this.image =  img;
            formatName = "jpg";
            width = img.getWidth();
            height = img.getHeight();
            updateColourArray();
        }
    
    
        /**
         * Method to reset the image to a solid colour
         * 
         * @param color - colour to rest the entire image to
         */
        public void clearImage(int color){
            for(int y=0; y<height; y++){
                for(int x=0; x<width; x++){
                    image.setPixel(x, y, color);
                }
            }
        }
    
    
        /**
         * Set colour array for image - called on initialisation
         * by constructor
         * 
         * @param bitmap
         */
        private void updateColourArray(){
            colourArray = new int[width * height];
            image.getPixels(colourArray, 0, width, 0, 0, width, height);
            int r, g, b;
            for (int y = 0; y < height; y++){
                for (int x = 0; x < width; x++){
                    int index = y * width + x;
                    r = (colourArray[index] >> 16) & 0xff;
                    g = (colourArray[index] >> 8) & 0xff;
                    b = colourArray[index] & 0xff;
                    colourArray[index] = 0xff000000 | (r << 16) | (g << 8) | b;
                }
            }
        }
    
    
        /**
         * Method to set the colour of a specific pixel
         * 
         * @param x
         * @param y
         * @param colour
         */
        public void setPixelColour(int x, int y, int colour){
            colourArray[((y*image.getWidth()+x))] = colour;
            image.setPixel(x, y, colour);
        }
    
        /**
         * Get the colour for a specified pixel
         * 
         * @param x
         * @param y
         * @return colour
         */
        public int getPixelColour(int x, int y){
            return colourArray[y*width+x];
        }
    
        /**
         * Set the colour of a specified pixel from an RGB combo
         * 
         * @param x
         * @param y
         * @param c0
         * @param c1
         * @param c2
         */
        public void setPixelColour(int x, int y, int c0, int c1, int c2){
            colourArray[((y*image.getWidth()+x))] = (255 << 24) + (c0 << 16) + (c1 << 8) + c2;
            image.setPixel(x, y, colourArray[((y*image.getWidth()+x))]);
        }
    
        /**
         * Method to get the RED colour for the specified 
         * pixel 
         * @param x
         * @param y
         * @return colour of R
         */
        public int getRComponent(int x, int y){
            return (getColourArray()[((y*width+x))]& 0x00FF0000) >>> 16;
        }
    
    
        /**
         * Method to get the GREEN colour for the specified 
         * pixel 
         * @param x
         * @param y
         * @return colour of G
         */
        public int getGComponent(int x, int y){
            return (getColourArray()[((y*width+x))]& 0x0000FF00) >>> 8;
        }
    
    
        /**
         * Method to get the BLUE colour for the specified 
         * pixel 
         * @param x
         * @param y
         * @return colour of B
         */
        public int getBComponent(int x, int y){
            return (getColourArray()[((y*width+x))] & 0x000000FF);
        }
    
    
    
        /**
         * Method to rotate an image by the specified number of degrees
         * 
         * @param rotateDegrees
         */
        public void rotate (int rotateDegrees){
            Matrix mtx = new Matrix();
            mtx.postRotate(rotateDegrees);
            image = Bitmap.createBitmap(image, 0, 0, width, height, mtx, true);
            width = image.getWidth();
            height = image.getHeight();
            updateColourArray();
        }
    
    
        /**
         * @return the image
         */
        public Bitmap getImage() {
            return image;
        }
    
    
        /**
         * @param image the image to set
         */
        public void setImage(Bitmap image) {
            this.image = image;
        }
    
    
        /**
         * @return the formatName
         */
        public String getFormatName() {
            return formatName;
        }
    
    
        /**
         * @param formatName the formatName to set
         */
        public void setFormatName(String formatName) {
            this.formatName = formatName;
        }
    
    
        /**
         * @return the width
         */
        public int getWidth() {
            return width;
        }
    
    
        /**
         * @param width the width to set
         */
        public void setWidth(int width) {
            this.width = width;
        }
    
    
        /**
         * @return the height
         */
        public int getHeight() {
            return height;
        }
    
    
        /**
         * @param height the height to set
         */
        public void setHeight(int height) {
            this.height = height;
        }
    
    
        /**
         * @return the colourArray
         */
        public int[] getColourArray() {
            return colourArray;
        }
    
    
        /**
         * @param colourArray the colourArray to set
         */
        public void setColourArray(int[] colourArray) {
            this.colourArray = colourArray;
        }
    
    }
    

    import com.bvise.fotoflipper.core.AndroidImage;
    
    
    
    
    public interface IAndroidFilter {
    
        public AndroidImage process(AndroidImage imageIn);
    }
    
    
    import android.graphics.Bitmap;
    import android.graphics.Color;
    
    public class ConvolutionMatrix
    {
        public static final int SIZE = 3;
    
        public double[][] Matrix;
        public double Factor = 1;
        public double Offset = 1;
    
        public ConvolutionMatrix(int size) {
            Matrix = new double[size][size];
        }
    
        public void setAll(double value) {
            for (int x = 0; x < SIZE; ++x) {
                for (int y = 0; y < SIZE; ++y) {
                    Matrix[x][y] = value;
                }
            }
        }
    
        public void applyConfig(double[][] config) {
            for(int x = 0; x < SIZE; ++x) {
                for(int y = 0; y < SIZE; ++y) {
                    Matrix[x][y] = config[x][y];
                }
            }
        }
    
        public static Bitmap computeConvolution3x3(Bitmap src, ConvolutionMatrix matrix) {
            int width = src.getWidth();
            int height = src.getHeight();
            Bitmap result = Bitmap.createBitmap(width, height, src.getConfig());
    
            int A, R, G, B;
            int sumR, sumG, sumB;
            int[][] pixels = new int[SIZE][SIZE];
    
            for(int y = 0; y < height - 2; ++y) {
                for(int x = 0; x < width - 2; ++x) {
    
                    // get pixel matrix
                    for(int i = 0; i < SIZE; ++i) {
                        for(int j = 0; j < SIZE; ++j) {
                            pixels[i][j] = src.getPixel(x + i, y + j);
                        }
                    }
    
                    // get alpha of center pixel
                    A = Color.alpha(pixels[1][1]);
    
                    // init color sum
                    sumR = sumG = sumB = 0;
    
                    // get sum of RGB on matrix
                    for(int i = 0; i < SIZE; ++i) {
                        for(int j = 0; j < SIZE; ++j) {
                            sumR += (Color.red(pixels[i][j]) * matrix.Matrix[i][j]);
                            sumG += (Color.green(pixels[i][j]) * matrix.Matrix[i][j]);
                            sumB += (Color.blue(pixels[i][j]) * matrix.Matrix[i][j]);
                        }
                    }
    
                    // get final Red
                    R = (int)(sumR / matrix.Factor + matrix.Offset);
                    if(R < 0) { R = 0; }
                    else if(R > 255) { R = 255; }
    
                    // get final Green
                    G = (int)(sumG / matrix.Factor + matrix.Offset);
                    if(G < 0) { G = 0; }
                    else if(G > 255) { G = 255; }
    
                    // get final Blue
                    B = (int)(sumB / matrix.Factor + matrix.Offset);
                    if(B < 0) { B = 0; }
                    else if(B > 255) { B = 255; }
    
                    // apply new pixel
                    result.setPixel(x + 1, y + 1, Color.argb(A, R, G, B));
                }
            }
    
            // final image
            return result;
        }
    }
    

    import android.graphics.Bitmap;
    
    import com.bvise.fotoflipper.core.AndroidImage;
    import com.bvise.fotoflipper.core.ConvolutionMatrix;
    import com.bvise.fotoflipper.filters.IAndroidFilter;
    
    public class GaussianBlur implements IAndroidFilter{
    
        @Override
        public AndroidImage process(AndroidImage imageIn) {
            // TODO Auto-generated method stub
            Bitmap src=imageIn.getImage();
            double[][] GaussianBlurConfig = new double[][] {
                    { 1, 2, 1 },
                    { 2, 4, 2 },
                    { 1, 2, 1 }
                };
                ConvolutionMatrix convMatrix = new ConvolutionMatrix(3);
                convMatrix.applyConfig(GaussianBlurConfig);
                convMatrix.Factor = 200;
                convMatrix.Offset = 0;
                return new AndroidImage(ConvolutionMatrix.computeConvolution3x3(src, convMatrix));
        }
    
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to programmatically download the contents of a web page, but that page
I want to programmatically modify a bitmap using python but don't really need a
I want to programmatically re-open the main window of my Cocoa application after the
I want to programmatically make it so that users can see only particuar items
I want to programmatically fire ListBox's ChangeEvent . I found function, but dont understand
I want to programmatically get the servlet containers port that my Java EE application
I want to programmatically lock all content controls so that the user cannot delete
I want to programmatically reach a method that is nested inside a object. var
I want to programmatically select the network card that is connected to the Internet.
I want to programmatically get the event log that appears in a folder in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.