me.xingrz.gankmeizhi.util.ColorMixer.java Source code

Java tutorial

Introduction

Here is the source code for me.xingrz.gankmeizhi.util.ColorMixer.java

Source

/*
 * Copyright 2015 XiNGRZ <chenxingyu92@gmail.com>
 *
 * 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.xingrz.gankmeizhi.util;

import android.graphics.Color;
import android.support.annotation.ColorInt;
import android.support.v4.graphics.ColorUtils;

public class ColorMixer {

    /**
     * ??
     *
     * @param background 
     * @param foreground ?
     * @param ratio      ??
     * @return ??
     */
    public static int mix(@ColorInt int background, @ColorInt int foreground, float ratio) {
        int alpha = Color.alpha(foreground);
        alpha = (int) Math.floor((float) alpha * ratio);
        foreground = ColorUtils.setAlphaComponent(foreground, alpha);
        return ColorUtils.compositeColors(foreground, background);
    }

}