Giter Site home page Giter Site logo

Comments (4)

rbrki07 avatar rbrki07 commented on May 31, 2024

Just wanted to let you know, that I have chosen a different approach now. In the end I'm using "switchEffect" with a FileInputStream and that works well:

    private fun getMaskAsFileInputStream(mask: String): FileInputStream? {
        return try {
            val loader = FlutterInjector.instance().flutterLoader()
            val path = loader.getLookupKeyForAsset("assets/masks/$mask", "my_plugin_name")
            val maskFd: AssetFileDescriptor = activity.assets.openFd(path)
            if (maskFd.length > 0) {
                maskFd.createInputStream()
            } else {
                Log.w(TAG, "Mask asset at $path is empty")
                null
            }
        } catch (exc: Exception) {
            Log.e(TAG, "Could not get mask as file input stream", exc)
            null
        }
    }

    private fun changeMask(mask: String) {
        try {
            deepAR?.switchEffect("masks", getMaskAsFileInputStream(mask))
        } catch (exc: Exception) {
            Log.e(TAG, "Could not change mask", exc)
        }
    }

from quickstart-android-java.

holy-dev avatar holy-dev commented on May 31, 2024

Did you release the plugin?

from quickstart-android-java.

rbrki07 avatar rbrki07 commented on May 31, 2024

No, sorry! The plugin is currently used in a closed source app in an early development stage.

from quickstart-android-java.

ShaimaaFakhraldin avatar ShaimaaFakhraldin commented on May 31, 2024

did you solve it ?

from quickstart-android-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.