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

  • SEARCH
  • Home
  • 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 8844471
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T11:29:44+00:00 2026-06-14T11:29:44+00:00

I want to create an Android app where I can take a picture from

  • 0

I want to create an Android app where I can take a picture from the SD card or from the camera. After taking the picture, I have to edit it, like adding text in the picture, cropping the picture, add .gif type file to the picture. Taking a picture isn’t the problem, but I can’t understand how to write code to edit the picture. I need to know whether I have to use OpenGL for this. Suggestions and helpful links wanted.

  • 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-14T11:29:45+00:00Added an answer on June 14, 2026 at 11:29 am

    Your question is too vague. I provide some guide.

    UPDATE 2020: You can browser all image processing library listed in Android Asernal https://android-arsenal.com/tag/47

    1. Using Aviary SDK now become Creative SDK . It also supports iOS and WindowPhone7. Aviary provide most of function such as Orientation, Crop, and Sharpness,Red-Eye, Whiten, and Blemish,Stickers, Drawing, Text, and Meme (beta),Brightness, Saturation, and Contrast and custom Options. SS.
    2. Fotor SDK
    3. Creative SDK by Adobe
    4. Directly process bitmap.
    import android.graphics.Bitmap;
    
        public class ProcessingImage {
        private Bitmap defaultImg;
        private int idBitmap;
    
        public int getIdBitmap() {
            return idBitmap;
        }
    
        public void setIdBitmap(int idBitmap) {
            this.idBitmap = idBitmap;
        }
    
        public Bitmap getDefaultImg() {
            return defaultImg;
        }
    
        public void setDefaultImg(Bitmap defaultImg) {
            this.defaultImg = defaultImg;
        }
    
        public ProcessingImage() {
        }
    
        public Bitmap processingI(Bitmap myBitmap) {
            return myBitmap;
        }
    
        public Bitmap TintThePicture(int deg, Bitmap defaultBitmap) {
            int w = defaultBitmap.getWidth();
            int h = defaultBitmap.getHeight();
    
            int[] pix = new int[w * h];
            defaultBitmap.getPixels(pix, 0, w, 0, 0, w, h);
    
            double angle = (3.14159d * (double) deg) / 180.0d;
            int S = (int) (256.0d * Math.sin(angle));
            int C = (int) (256.0d * Math.cos(angle));
    
            int r, g, b, index;
            int RY, BY, RYY, GYY, BYY, R, G, B, Y;
    
            for (int y = 0; y < h; y++) {
                for (int x = 0; x < w; x++) {
                    index = y * w + x;
                    r = (pix[index] >> 16) & 0xff;
                    g = (pix[index] >> 8) & 0xff;
                    b = pix[index] & 0xff;
                    RY = (70 * r - 59 * g - 11 * b) / 100;
                    BY = (-30 * r - 59 * g + 89 * b) / 100;
                    Y = (30 * r + 59 * g + 11 * b) / 100;
                    RYY = (S * BY + C * RY) / 256;
                    BYY = (C * BY - S * RY) / 256;
                    GYY = (-51 * RYY - 19 * BYY) / 100;
                    R = Y + RYY;
                    R = (R < 0) ? 0 : ((R > 255) ? 255 : R);
                    G = Y + GYY;
                    G = (G < 0) ? 0 : ((G > 255) ? 255 : G);
                    B = Y + BYY;
                    B = (B < 0) ? 0 : ((B > 255) ? 255 : B);
                    pix[index] = 0xff000000 | (R << 16) | (G << 8) | B;
                }
            }
    
            Bitmap bm = Bitmap.createBitmap(w, h, defaultBitmap.getConfig());
            bm.setPixels(pix, 0, w, 0, 0, w, h);
    
            pix = null;
            return bm;
         }
         }
    

    Usage: Process Indigo color: TintThePicture(180, myBitmap);
    Process Green color: TintThePicture(300, myBitmap);

    1. Use android.media.effect is provided in API14

    2. Effect Pro

    3. Android-Image-Edit

    4. android-image-editor

    5. smartcrop-android (This library will analyze best crop position and size by calculating some features; edge, skin tone, staturation and face.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create an Android app that can be used on 2.3.3 all
I want to create a layout for an Android app that has a numeric
i want to create a chat app using flex 4.5 mobile project for android
I want to create an Android application that show the sales report from SQL
I want to create a android search application that can be used to search
I want to create android app that while i am in my wifi area
I have a free android app that I want to now distribute as free
I have a cloud storage website and I want to create an Android application
i'm new to android i've created one camera app from scratch in here i
I want to create an android app. please consider the following scenario: Iam standing

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.