फ्रेम में मास्किंग (क्रॉप) इमेज


83

एक समृद्ध यूआई एप्लिकेशन होने से जिसमें मैं इस तरह की जटिल आकृति के साथ छवि दिखाना चाहता हूं

यहाँ छवि विवरण दर्ज करें

अब मैं जो चाहता हूं वह मास्क इमेज के अनुसार अपनी छवि को क्रॉप करना है, वास्तव में इमेज डायनामिक आ रही है और इसे कैमरा या गैलरी (स्क्वायर या आयत आकार) से आयात किया जा सकता है और मैं चाहता हूं कि यह इमेज मेरे लेआउट फ्रेम में फिट हो।

तो बस सोच रहा था कि मुझे यह कैसे हासिल होगा? किसी भी विचार / संकेत का स्वागत करते हैं

बैकग्राउंड फ्रेम
यहाँ छवि विवरण दर्ज करें
मास्क
यहाँ छवि विवरण दर्ज करें

इस तरह

जवाबों:


143

अंत में मुखौटा छवि को बदलते हुए और इसके Xfermodeसाथ उपयोग करते हुए समाधान मिलाBitmap

मुखौटा

यहाँ छवि विवरण दर्ज करें

 ImageView mImageView= (ImageView)findViewById(R.id.imageview_id);
 Bitmap original = BitmapFactory.decodeResource(getResources(),R.drawable.content_image);
 Bitmap mask = BitmapFactory.decodeResource(getResources(),R.drawable.mask);
 Bitmap result = Bitmap.createBitmap(mask.getWidth(), mask.getHeight(), Config.ARGB_8888);
 Canvas mCanvas = new Canvas(result);
 Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
 paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_IN));
 mCanvas.drawBitmap(original, 0, 0, null);
 mCanvas.drawBitmap(mask, 0, 0, paint);
 paint.setXfermode(null);
 mImageView.setImageBitmap(result);
 mImageView.setScaleType(ScaleType.CENTER);
 mImageView.setBackgroundResource(R.drawable.background_frame);

आउटपुट देखें

यहाँ छवि विवरण दर्ज करें

स्रोत यहां पाया जा सकता है


1
हैलो @ हॉटवरीस्पी, उदाहरण कोड के लिए धन्यवाद, इसने बहुत मदद की। मैं कुछ समस्या का सामना कर रहा हूं, कुछ छोटे संकेत मेरे लिए लंबा रास्ता तय करेंगे। मैं खींचे गए कुछ बहुभुज आकार में बिटमैप को काटना चाहता हूं। मेरा बिटमैप बहुभुज आकार में कट जाता है, लेकिन क्रॉप्ड बिटमैप की सामग्री को बाईं ओर से लिया जाता है अर्थात मूल बिटमैप का 0,0। और मैं नीचे की सामग्री चाहता हूं जहां बहुभुज खींचा गया है।
डोरी

@ निधि आप उसी के लिए स्केल किए गए बिटमैप बना सकते हैं।
मोहम्मद अजहरुद्दीन शेख

उत्तर के लिए @hotveryspicy थैंक्यू। वास्तव में मैं यहां दी गई एक ही बात करना चाहता हूं। stackoverflow.com/questions/15969028/… । मेरी समस्या काटा हुआ बिटमैप शीर्ष बाईं ओर से फसल है यानी 0,0। उस पथ का निर्माण न करें जो मैंने निर्दिष्ट किया था। मैंने भी कोड डाल दिया है। कृपया मुझे गाइड करें जहां मैं गलत हो रहा हूं।
डोरी

धन्यवाद @hotveryspicy, जिस किसी को भी इसकी आवश्यकता है, मैंने एक साधारण कांटा बनाया है जो छवि को मुखौटा के आकार में स्केल करने में मदद कर सकता है: github.com/worker8/MaskImage/tree/master
मैं एक मेंढक अजगर हूं

1
छवि को फिट करने के लिए मास्क को स्केल करने के लिए, मैं इस लाइन का उपयोग करता हूं: बिटमैप का आकार बदला = Bitmap.createScaledBitmap (मास्क, ओरिजनल। विजेट (), original.getHeight (), true); और mCanvas.drawBitmap (मूल, 0, 0, null) का उपयोग करें; mCanvas.drawBitmap (आकार, 0, 0, पेंट);
मिगेल

5

पिकासो पुस्तकालय और एक कस्टम परिवर्तन का उपयोग करना और भी आसान है:

MaskTransformation.java:

 * ORIGINAL:
 * Copyright (C) 2015 Wasabeef
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package me.monori.example.utilities;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.PorterDuff;
import android.graphics.PorterDuffXfermode;
import android.graphics.drawable.Drawable;
import android.support.v4.content.ContextCompat;

import com.squareup.picasso.Transformation;

public class MaskTransformation implements Transformation {

    private static Paint mMaskingPaint = new Paint();
    private Context mContext;
    private int mMaskId;

    static {
        mMaskingPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
    }

    /**
     * @param maskId If you change the mask file, please also rename the mask file, or Glide will get
     * the cache with the old mask. Because getId() return the same values if using the
     * same make file name. If you have a good idea please tell us, thanks.
     */
    public MaskTransformation(Context context, int maskId) {
        mContext = context.getApplicationContext();
        mMaskId = maskId;
    }

    @Override public Bitmap transform(Bitmap source) {
        int width = source.getWidth();
        int height = source.getHeight();

        Bitmap result = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);

        Drawable mask = getMaskDrawable(mContext, mMaskId);

        Canvas canvas = new Canvas(result);
        mask.setBounds(0, 0, width, height);
        mask.draw(canvas);
        canvas.drawBitmap(source, 0, 0, mMaskingPaint);

        source.recycle();

        return result;
    }

    @Override public String key() {
        return "MaskTransformation(maskId=" + mContext.getResources().getResourceEntryName(mMaskId)
                + ")";
    }

    public Drawable getMaskDrawable(Context context, int maskId) {
        Drawable drawable = ContextCompat.getDrawable(context, maskId);

        if (drawable == null) {
            throw new IllegalArgumentException("maskId is invalid");
        }

        return drawable;
    }
}

तो बस एक लाइन में इसे परिभाषित:

Picasso.with(context)
                    .load(imageUrl)
                    .transform(new MaskTransformation(context, _maskDrawableId))
                    .placeholder(R.drawable.drawableId)
                    .into(imageView);

1
     final ImageView mImageView = (ImageView) findViewById(R.id.image);
     mImageView.setBackgroundResource(R.drawable.user_outer_circle_icon);


     mImageView.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {


            if(b){
                 mImageView.setBackgroundResource(R.drawable.profil_circle);

                 Bitmap original = BitmapFactory.decodeResource(getResources(),R.drawable.doge);

                 Bitmap mask = BitmapFactory.decodeResource(getResources(),R.drawable.mask_white);

                 Bitmap mask1 = BitmapFactory.decodeResource(getResources(),R.drawable.pencil_bg);

                 original = Bitmap.createScaledBitmap(original, mask.getWidth(),mask.getHeight(), true);

                 Bitmap result = Bitmap.createBitmap(mask.getWidth(), mask.getHeight(),Config.ARGB_8888);
                 Canvas mCanvas = new Canvas(result);
                 Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
                 paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_IN));
                 mCanvas.drawBitmap(original, 0, 0, null);
                 mCanvas.drawBitmap(mask, 0, 0, paint);
                 mCanvas.drawBitmap(mask1, 0, 0, null);
                 Bitmap mask2 = BitmapFactory.decodeResource(getResources(), R.drawable.ic_pencil);
                 mCanvas.drawBitmap(mask2, 0, 0, null);
                 mImageView.setImageBitmap(result);
                 mImageView.setScaleType(ScaleType.FIT_XY);

                 b=false;
             }else{
                 ImageView mImageView = (ImageView) findViewById(R.id.image);
                 Bitmap original = BitmapFactory.decodeResource(getResources(),
                 R.drawable.doge);

                 Bitmap mask = BitmapFactory.decodeResource(getResources(),
                 R.drawable.mask_white);

                 original = Bitmap.createScaledBitmap(original, mask.getWidth(),
                 mask.getHeight(), true);

                 Bitmap result = Bitmap.createBitmap(mask.getWidth(), mask.getHeight(),
                 Config.ARGB_8888);
                 Canvas mCanvas = new Canvas(result);
                 Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
                 paint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_IN));
                 mCanvas.drawBitmap(original, 0, 0, null);
                 mCanvas.drawBitmap(mask, 0, 0, paint);
                 paint.setXfermode(null);
                 mImageView.setImageBitmap(result);
                 mImageView.setScaleType(ScaleType.FIT_XY);
                // mImageView.setBackgroundResource(R.drawable.user_outer_circle_icon);
                 b= true;


             }


        }
    });

0

यह उदाहरण मास्क "एनीमेशन_मास्क" के साथ उनके बाल तत्व (इमेजव्यू) को मास्क करता है।

<com.christophesmet.android.views.maskableframelayout.MaskableFrameLayout
android:id="@+id/frm_mask_animated"
android:layout_width="100dp"
app:porterduffxfermode="DST_IN"
app:mask="@drawable/animation_mask"
android:layout_height="100dp">

<ImageView android:layout_width="match_parent"
           android:layout_height="match_parent"
           android:scaleType="centerCrop"
           android:src="@drawable/unicorn"/>

इस git लिंक की जाँच करें

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.