Popularity
4.6
Stable
Activity
0.0
Stable
361
11
81

Code Quality Rank: L4
Programming language: Java
Tags: Tools    

ProMosaic alternatives and similar packages

Based on the "Tools" category.
Alternatively, view ProMosaic alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of ProMosaic or a related project?

Add another 'Tools' Package

README

ProMosaic

Make mosaic for image on android.

Features

Select Mode

  • Follow finger
  • Select rectangle

Effect Mode

  • Grid color based on original image
  • Blur Image
  • Pure grey color

Usage

Use MosaicView as normal android view:

<me.dawson.promosaic.MosaicView
        android:id="@+id/iv_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/ll_options"
        android:background="@color/grey_3"
        android:contentDescription="@string/app_name" />

Set properties in java code

mvImage.setSrcPath(filePath);
mvImage.clear();
mvImage.setEffect(Effect.BLUR);
mvImage.setMosaicColor(0xFF4D4D4D);
mvImage.setMode(Mode.PATH);

Demo

Contact me

Any further question?

Email me please!

License

    Copyright 2014 Dawson Dong

    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.


*Note that all licence references and agreements mentioned in the ProMosaic README section above are relevant to that project's source code only.