Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by sh3rifme · Apr 24, 2015 at 05:55 AM · c#androidfile-iowww.texturewww.loadimageintotexture

Black texture shows using WWW on Android phone

So I'm trying to load in a texture, stored on the phone's internal storage. I get the path of the file as follows:

 string[] filePaths = Directory.GetFiles(m_FileDir);
     if ( filePaths[0] != null )
     {
         StartCoroutine( ImportFile( filePaths[0] ) );
     }

I'm pretty sure that bit works as within the co-routine I added an output for the width and height of the loaded texture, which is correct.

The code inside the co-routine is:

 WWW www = new WWW( "file:///" + _dir );
 yield return www;
 
 m_Text.text = _dir + " \n " + www.texture.width + " \n " + www.texture.height;
 
 Texture2D tex = new Texture2D( 4096, 1271, TextureFormat.ETC2_RGB, true );
 
 www.LoadImageIntoTexture(tex);
 
 m_Mesh.renderer.material.mainTexture = tex;
     

I looks like it should be correct, but it only produces a black texture.

Any help would be greatly appreciated.

EDIT:

The other textures in the scene are 4096:xxxx and setting the aspect ratio of the texture2D to 2048:635 also produces a black texture. Testing on a Samsung Galaxy S5

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by sh3rifme · Apr 30, 2015 at 06:55 PM

Well, after some tinkering, i got it working.

Now i'm using:

 Texture2D texture = www.texture;

I'm not 100% sure why it was not working, but i believe it had something to do with trying to load the image into a texture that was of the incorrect format/size, as once i stopped trying to constrain the texture, it began to work.

Currently using an android plugin to get the texture re-sizing working instead.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

2 People are following this question.

avatar image avatar image

Related Questions

Multiple Cars not working 1 Answer

Distribute terrain in zones 3 Answers

Access existing folders android 0 Answers

display www.texture from url causes crash in some devices 0 Answers

How to download multiple images using WWW api and show in listview. 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges