Giter Club home page Giter Club logo

Comments (2)

Nameless77 avatar Nameless77 commented on July 26, 2024

NOTE : This Is works only for Android/IOS.

yes you can definetly share GIF
all you need to do just download a plugin for that which is called NativeShare
you can download it from here :
https://github.com/yasirkula/UnityNativeShare

it is also avilable in unity asset store:
https://assetstore.unity.com/packages/tools/integration/native-share-for-android-ios-112731

just create a new scene and import that unity package

after that create a new script(give it a name you want).

then paste this code:

void Update()
{
if( Input.GetMouseButtonDown( 0 ) )
StartCoroutine( TakeSSAndShare() );
}

private IEnumerator TakeSSAndShare()
{
yield return new WaitForEndOfFrame();

Texture2D ss = new Texture2D( Screen.width, Screen.height, TextureFormat.RGB24, false );
ss.ReadPixels( new Rect( 0, 0, Screen.width, Screen.height ), 0, 0 );
ss.Apply();

string filePath = Path.Combine( Application.temporaryCachePath, "shared img.png" );
File.WriteAllBytes( filePath, ss.EncodeToPNG() );

// To avoid memory leaks
Destroy( ss );

new NativeShare().AddFile( filePath ).SetSubject( "Subject goes here" ).SetText( "Hello world!" ).Share();

// Share on WhatsApp only, if installed (Android only)
//if( NativeShare.TargetExists( "com.whatsapp" ) )
//	new NativeShare().AddFile( filePath ).SetText( "Hello world!" ).SetTarget( "com.whatsapp" ).Share();

}

after that for testing create a build for android and when you click on the screen you can share a screenshot to social media.

for the GIF file you just need this code

void Update()
{
if( Input.GetMouseButtonDown( 0 ) )
StartCoroutine( TakeSSAndShare() );
}
private IEnumerator TakeSSAndShare()
{
yield return new WaitForEndOfFrame();
string filePath = Path.Combine( yourGIFfilepath , yourGIFname.gif ); //both perameters must be in string format.
new NativeShare().AddFile( filePath ).SetSubject( "Subject goes here" ).SetText( "Hello world!" ).Share();
}

and after building apk when you click on screen you can share that gif file to social media.
(Remember some social media platform does not support gif file format so just keep that in your mind).

from moments.

stickylabdev avatar stickylabdev commented on July 26, 2024

it's been a while ,, im so sad , but thanks

from moments.

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.