Android 高級(jí)UI7 濾鏡效果和顏色通道過(guò)濾

Android 高級(jí)UI 目錄
濾鏡效果:對(duì)圖像進(jìn)行一定的過(guò)濾加工處理。使用Paint設(shè)置濾鏡效果

1.MaskFilter遮罩濾鏡處理

(1)模糊遮罩濾鏡 (BlurMaskFilter)

public class MaskFilterView extends View {

    public MaskFilterView(Context context) {
        super(context);
    }

    public MaskFilterView(Context context,
            @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MaskFilterView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        //需要關(guān)閉硬件加速(沒(méi)有關(guān)閉則沒(méi)效果)
        setLayerType(View.LAYER_TYPE_SOFTWARE,null);
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);


        Bitmap bitmap = BitmapFactory.decodeResource(getResources(),R.drawable.timg);

        canvas.drawBitmap(bitmap,null,new RectF(0,0,400,400*bitmap.getHeight()/bitmap.getWidth()),paint);

        canvas.translate(400,0);

        /**
         * 模糊遮罩 濾鏡效果
         * Blur.NORMAL
         * Blur.SOLID
         * Blur.OUTER
         * Blur.INNER
         */
        paint.setMaskFilter(new BlurMaskFilter(50,Blur.NORMAL));
        canvas.drawBitmap(bitmap,null,new RectF(0,0,400,400*bitmap.getHeight()/bitmap.getWidth()),paint);


    }
}

(2)浮雕遮罩濾鏡(EmbossMaskFilter)

public class MaskFilterView extends View {

    public MaskFilterView(Context context) {
        super(context);
    }

    public MaskFilterView(Context context,
            @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MaskFilterView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        //需要關(guān)閉硬件加速(沒(méi)有關(guān)閉則沒(méi)效果)
        setLayerType(View.LAYER_TYPE_SOFTWARE,null);
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);


        Bitmap bitmap = BitmapFactory.decodeResource(getResources(),R.drawable.timg);

        canvas.drawBitmap(bitmap,null,new RectF(0,0,400,400*bitmap.getHeight()/bitmap.getWidth()),paint);

        canvas.translate(400,0);


        /**
         * direction, 指定長(zhǎng)度為xxx的數(shù)組標(biāo)量[x,y,z],用來(lái)指定光源的位置
         * ambient,   指定周邊背景光源(0~1)
         * specular,  指鏡面反射系數(shù)
         * blurRadius,指定模糊半徑
         */
       paint.setMaskFilter(new EmbossMaskFilter(new float[]{400,300,100},0.5f,60,100 ));
        canvas.drawBitmap(bitmap,null,new RectF(0,0,400,400*bitmap.getHeight()/bitmap.getWidth()),paint);


    }
}

2.顏色RGB的濾鏡處理

濾鏡的所有處理效果都是通過(guò)顏色矩陣的變換實(shí)現(xiàn)的锁荔。
比如:美顏相機(jī)實(shí)現(xiàn)的特效(高光埃唯、復(fù)古拢操、黑白)
(1)什么是矩陣长搀?
假設(shè)矩陣A大小是MN锰提,矩陣B大小是NP谚攒,C=AB


這里選取一個(gè)例子

這里的矩陣乘法要求相乘的兩個(gè)矩陣一個(gè)的行數(shù)得等于另一個(gè)的列數(shù)阳准,否則,無(wú)法進(jìn)行乘機(jī)運(yùn)算馏臭。

(2) 通過(guò)矩陣變換將一個(gè)圖片野蝇、顏色塊,過(guò)濾其中的紅色括儒、綠色(只留下藍(lán)色)

public class MaskFilterView extends View {

    public MaskFilterView(Context context) {
        super(context);
    }

    public MaskFilterView(Context context,
            @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MaskFilterView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);


        //需要關(guān)閉硬件加速(沒(méi)有關(guān)閉則沒(méi)效果)
        setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(),R.drawable.timg);
        canvas.drawBitmap(bitmap,null,new RectF(0,0,400,400*bitmap.getHeight()/bitmap.getWidth()),paint);
        canvas.translate(400,0);
        ColorMatrix matrix = new ColorMatrix(new float[]{
                0, 0, 0, 0,0,
                0, 0, 0, 0,0,
                0, 0, 1, 0,0,
                0, 0, 0, 1,0,
        });
        //設(shè)置顏色過(guò)濾器
        paint.setColorFilter(new ColorMatrixColorFilter(matrix));
        canvas.drawBitmap(bitmap,null,new RectF(0,0,400,400*bitmap.getHeight()/bitmap.getWidth()),paint);

    }
}
矩陣

(3) 色彩運(yùn)算
1.色彩的平移運(yùn)算(加法運(yùn)算)
2.色彩的縮放運(yùn)算(乘法運(yùn)算)

反相效果(類似曝光)

原來(lái): RGB = 100绕沈,200,250
反相后:RGB = 155帮寻,55乍狐,5

public class MaskFilterView extends View {

    public MaskFilterView(Context context) {
        super(context);
    }

    public MaskFilterView(Context context,
            @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MaskFilterView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        //需要關(guān)閉硬件加速(沒(méi)有關(guān)閉則沒(méi)效果)
        setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        paint.setColor(Color.argb(255, 200, 100, 100));
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.timg);

        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);

        canvas.translate(400, 0);

        /**
         * 反相效果
         * 透明度不反相
         */
        ColorMatrix matrix = new ColorMatrix(new float[]{
                -1, 0, 0, 0, 255,
                0, -1, 0, 0, 255,
                0, 0, -1, 0, 255,
                0, 0, 0, 1, 0,
        });

        //設(shè)置顏色過(guò)濾器
        paint.setColorFilter(new ColorMatrixColorFilter(matrix));
        canvas.drawRect(0, 0, 400, 400, paint);
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);

    }
}
顏色增強(qiáng)(變亮效果)
public class MaskFilterView extends View {

    public MaskFilterView(Context context) {
        super(context);
    }

    public MaskFilterView(Context context,
            @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MaskFilterView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        //需要關(guān)閉硬件加速(沒(méi)有關(guān)閉則沒(méi)效果)
        setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        paint.setColor(Color.argb(255, 200, 100, 100));
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.timg);

        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);

        canvas.translate(400, 0);

        /**
         * 反相效果
         * 透明度不反相
         */
        ColorMatrix matrix = new ColorMatrix(new float[]{
                1.2f, 0, 0, 0, 0,
                0, 1.2f, 0, 0, 0,
                0, 0, 1.2f, 0, 0,
                0, 0, 0, 1.2f, 0,
        });

        //設(shè)置顏色過(guò)濾器
        paint.setColorFilter(new ColorMatrixColorFilter(matrix));
        canvas.drawRect(0, 0, 400, 400, paint);
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);

    }
}
圖片黑白效果
public class MaskFilterView extends View {

    public MaskFilterView(Context context) {
        super(context);
    }

    public MaskFilterView(Context context,
            @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MaskFilterView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);


        //需要關(guān)閉硬件加速(沒(méi)有關(guān)閉則沒(méi)效果)
        setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(),R.drawable.timg);
        canvas.drawBitmap(bitmap,null,new RectF(0,0,400,400*bitmap.getHeight()/bitmap.getWidth()),paint);
        canvas.translate(400,0);
        /**
         * 去色原理:只要把RGB三通道的色彩信息設(shè)置成一樣,即:R=G=B
         * 那么圖像就變成了灰色固逗,并且浅蚪,為了保證圖像亮度不變,
         * 同一個(gè)通道中的R+G+B=1烫罩;如0.213+0.175+0.072 =1;
         * RGB=0.213,0.175,0.072
         * 三個(gè)數(shù)字是根據(jù)色彩光波頻率及色彩心理學(xué)計(jì)算出來(lái)的
         */
        ColorMatrix matrix = new ColorMatrix(new float[]{
                0.213f, 0.715f, 0.072f, 0,0,
                0.213f, 0.715f, 0.072f, 0,0,
                0.213f, 0.715f, 0.072f, 0,0,
                0,      0,           0, 1,0,
        });
        //設(shè)置顏色過(guò)濾器
        paint.setColorFilter(new ColorMatrixColorFilter(matrix));
        canvas.drawBitmap(bitmap,null,new RectF(0,0,400,400*bitmap.getHeight()/bitmap.getWidth()),paint);

    }
}
    final float R = 0.213f * invSat;
    final float G = 0.715f * invSat;
    final float B = 0.072f * invSat;
反色效果
public class MaskFilterView extends View {

    public MaskFilterView(Context context) {
        super(context);
    }

    public MaskFilterView(Context context,
            @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MaskFilterView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        //需要關(guān)閉硬件加速(沒(méi)有關(guān)閉則沒(méi)效果)
        setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.timg);
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);
        canvas.translate(400, 0);

        //反色效果
        ColorMatrix matrix = new ColorMatrix(new float[]{
                0, 1f, 0, 0, 0,
                1f, 0, 0, 0, 0,
                0, 0, 1f, 0, 0,
                0, 0, 0, 1f, 0,
        });
        //設(shè)置顏色過(guò)濾器
        paint.setColorFilter(new ColorMatrixColorFilter(matrix));
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);

    }
}
復(fù)古風(fēng)格
public class MaskFilterView extends View {

    public MaskFilterView(Context context) {
        super(context);
    }

    public MaskFilterView(Context context,
            @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MaskFilterView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        //需要關(guān)閉硬件加速(沒(méi)有關(guān)閉則沒(méi)效果)
        setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.timg);
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);
        canvas.translate(400, 0);

        ColorMatrix matrix = new ColorMatrix(new float[]{
                1/2f, 1/2f, 1/2f, 0, 0,
                1/3f, 1/3f, 1/3f, 0, 0,
                1/4f, 1/4f, 1/4f, 0, 0,
                0, 0, 0, 1f, 0,
        });
        //設(shè)置顏色過(guò)濾器
        paint.setColorFilter(new ColorMatrixColorFilter(matrix));
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);

    }
}

3.ColorMatrix的API

3.1ColorMatrix構(gòu)造方法
   ColorMatrix matrix = new ColorMatrix(new float[]{
                1/2f, 1/2f, 1/2f, 0, 0,
                1/3f, 1/3f, 1/3f, 0, 0,
                1/4f, 1/4f, 1/4f, 0, 0,
                0, 0, 0, 1f, 0,
        });
ColorMatrix matrix = new ColorMatrix();
matrix.set(src);
3.2設(shè)置色彩的縮放函數(shù)setScale(色彩變亮或者變暗)
 //色彩變亮或者變暗
 matrix.setScale(1,1,1.4f,1);

源碼:

    /**
     * Set this colormatrix to scale by the specified values.
     */
    public void setScale(float rScale, float gScale, float bScale,
                         float aScale) {
        final float[] a = mArray;

        for (int i = 19; i > 0; --i) {
            a[i] = 0;
        }
        a[0] = rScale;
        a[6] = gScale;
        a[12] = bScale;
        a[18] = aScale;
    }
3.3設(shè)置色彩的飽和度setSaturation

源碼:

    public void setSaturation(float sat) {
        reset();
        float[] m = mArray;

        final float invSat = 1 - sat;
        final float R = 0.213f * invSat;
        final float G = 0.715f * invSat;
        final float B = 0.072f * invSat;

        m[0] = R + sat; m[1] = G;       m[2] = B;
        m[5] = R;       m[6] = G + sat; m[7] = B;
        m[10] = R;      m[11] = G;      m[12] = B + sat;
    }

//飽和設(shè)置(0:灰色 0~1飽和度降低 1.原來(lái)不變 >1 增加飽和度)
示例:

public class MaskFilterView extends View {

    public MaskFilterView(Context context) {
        super(context);
    }

    public MaskFilterView(Context context,
            @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MaskFilterView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        //需要關(guān)閉硬件加速(沒(méi)有關(guān)閉則沒(méi)效果)
        setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.timg);
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);
        canvas.translate(400, 0);
        ColorMatrix matrix = new ColorMatrix();
        //色彩變亮或者變暗
        //matrix.setScale(1,1,1.4f,1);

        matrix.setSaturation(1.8f);

        //設(shè)置顏色過(guò)濾器
        paint.setColorFilter(new ColorMatrixColorFilter(matrix));
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);

    }
}

matrix.setSaturation(1.8f);增加了飽和度

3.4色彩旋轉(zhuǎn)函數(shù)setRotate

參數(shù)axis,代表哪一個(gè)軸旋轉(zhuǎn)惜傲,0,1贝攒,2
(0 繞著紅色軸 R不變 G盗誊、B變)
(1 繞著綠色軸 G不變 R、B變)
(2 繞著藍(lán)色軸 B不變 R隘弊、G變)
參數(shù)degrees:旋轉(zhuǎn)度數(shù)

    /**
     * Set the rotation on a color axis by the specified values.
     * <p>
     * <code>axis=0</code> correspond to a rotation around the RED color
     * <code>axis=1</code> correspond to a rotation around the GREEN color
     * <code>axis=2</code> correspond to a rotation around the BLUE color
     * </p>
     */
    public void setRotate(int axis, float degrees) {
        reset();
        double radians = degrees * Math.PI / 180d;
        float cosine = (float) Math.cos(radians);
        float sine = (float) Math.sin(radians);
        switch (axis) {
        // Rotation around the red color
        case 0:
            mArray[6] = mArray[12] = cosine;
            mArray[7] = sine;
            mArray[11] = -sine;
            break;
        // Rotation around the green color
        case 1:
            mArray[0] = mArray[12] = cosine;
            mArray[2] = -sine;
            mArray[10] = sine;
            break;
        // Rotation around the blue color
        case 2:
            mArray[0] = mArray[6] = cosine;
            mArray[1] = sine;
            mArray[5] = -sine;
            break;
        default:
            throw new RuntimeException();
        }
    }
public class MaskFilterView extends View {

    public MaskFilterView(Context context) {
        super(context);
    }

    public MaskFilterView(Context context,
            @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MaskFilterView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        //需要關(guān)閉硬件加速(沒(méi)有關(guān)閉則沒(méi)效果)
        setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.timg);
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);
        canvas.translate(400, 0);[圖片上傳中...(WeChat66f51a0be417603f2969ad62c592c06e.png-b9aa68-1550653211087-0)]

        ColorMatrix matrix = new ColorMatrix();
        /**
         * axis,代表哪一個(gè)軸旋轉(zhuǎn)哈踱,0,1长捧,2
         * (0 繞著紅色軸 R不變 G嚣鄙、B變)
         * (1 繞著綠色軸 G不變 R、B變)
         * (2 繞著藍(lán)色軸 B不變 R串结、G變)
         *
         * degrees 旋轉(zhuǎn)度數(shù)
         **/
        matrix.setRotate(0,90);

        //設(shè)置顏色過(guò)濾器
        paint.setColorFilter(new ColorMatrixColorFilter(matrix));
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);

    }

}

4ColorFilter使用的子類

4.1ColorMatrixColorFilter:色彩矩陣的顏色過(guò)濾器
4.2LightingColorFilter: 過(guò)濾顏色和增強(qiáng)色彩的方法(光照顏色過(guò)濾器)
public class MaskFilterView extends View {
    public MaskFilterView(Context context) {
        super(context);
    }

    public MaskFilterView(Context context,
            @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MaskFilterView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        //需要關(guān)閉硬件加速(沒(méi)有關(guān)閉則沒(méi)效果)
        setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.timg);
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);
        canvas.translate(400, 0);



        /**
         * mul,multiply 使相乘   ---縮放
         * add,相加   ---平移
         */
        paint.setColorFilter(new LightingColorFilter(0x00ff00,0xff0000));
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);

    }

}
4.3PorterDuffColorFilter混合過(guò)濾器
public class MaskFilterView extends View {


    public MaskFilterView(Context context) {
        super(context);
    }

    public MaskFilterView(Context context,
            @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public MaskFilterView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);

        //需要關(guān)閉硬件加速(沒(méi)有關(guān)閉則沒(méi)效果)
        setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);
        Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.timg);
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);
        canvas.translate(400, 0);

        /**
         * color:
         * mode:
         */
        paint.setColorFilter(new PorterDuffColorFilter(Color.RED, Mode.MULTIPLY));
        canvas.drawBitmap(bitmap, null,
                new RectF(0, 0, 400, 400 * bitmap.getHeight() / bitmap.getWidth()), paint);

    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末肌割,一起剝皮案震驚了整個(gè)濱河市卧蜓,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌把敞,老刑警劉巖弥奸,帶你破解...
    沈念sama閱讀 218,755評(píng)論 6 507
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異奋早,居然都是意外死亡盛霎,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,305評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門耽装,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)愤炸,“玉大人,你說(shuō)我怎么就攤上這事掉奄」娓觯” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 165,138評(píng)論 0 355
  • 文/不壞的土叔 我叫張陵姓建,是天一觀的道長(zhǎng)诞仓。 經(jīng)常有香客問(wèn)我,道長(zhǎng)速兔,這世上最難降的妖魔是什么墅拭? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 58,791評(píng)論 1 295
  • 正文 為了忘掉前任,我火速辦了婚禮涣狗,結(jié)果婚禮上帜矾,老公的妹妹穿的比我還像新娘。我一直安慰自己屑柔,他們只是感情好屡萤,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,794評(píng)論 6 392
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著掸宛,像睡著了一般死陆。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上唧瘾,一...
    開(kāi)封第一講書(shū)人閱讀 51,631評(píng)論 1 305
  • 那天措译,我揣著相機(jī)與錄音,去河邊找鬼饰序。 笑死领虹,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的求豫。 我是一名探鬼主播塌衰,決...
    沈念sama閱讀 40,362評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼诉稍,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了最疆?” 一聲冷哼從身側(cè)響起杯巨,我...
    開(kāi)封第一講書(shū)人閱讀 39,264評(píng)論 0 276
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎努酸,沒(méi)想到半個(gè)月后服爷,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,724評(píng)論 1 315
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡获诈,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,900評(píng)論 3 336
  • 正文 我和宋清朗相戀三年仍源,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片舔涎。...
    茶點(diǎn)故事閱讀 40,040評(píng)論 1 350
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡笼踩,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出终抽,到底是詐尸還是另有隱情戳表,我是刑警寧澤,帶...
    沈念sama閱讀 35,742評(píng)論 5 346
  • 正文 年R本政府宣布昼伴,位于F島的核電站匾旭,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏圃郊。R本人自食惡果不足惜价涝,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,364評(píng)論 3 330
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望持舆。 院中可真熱鬧色瘩,春花似錦、人聲如沸逸寓。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 31,944評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)竹伸。三九已至泥栖,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間勋篓,已是汗流浹背吧享。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 33,060評(píng)論 1 270
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留譬嚣,地道東北人钢颂。 一個(gè)月前我還...
    沈念sama閱讀 48,247評(píng)論 3 371
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像拜银,于是被迫代替她去往敵國(guó)和親殊鞭。 傳聞我的和親對(duì)象是個(gè)殘疾皇子遭垛,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,979評(píng)論 2 355

推薦閱讀更多精彩內(nèi)容