Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 remy_rm · Jan 29, 2018 at 02:45 PM · imageparametersurlwww class

Cannot load image from URL passed as parameter

I am currently trying to load an image using the WWW class using the following function, which works as intended when i hardcode the url i want to load the image from into the function. However when i try to pass the url as a paramater things start to get wacky.

  private IEnumerator LoadImage(string url, Image image)
     {
         //url = url.Replace(" ", string.Empty);
         Debug.Log(url);
         //url = "https://news.nationalgeographic.com/content/dam/news/photos/000/755/75552.ngsversion.1422285553360.adapt.1900.1.jpg"; //random cat image
         //Debug.Log(url);
         Texture2D texture;
         Sprite sprite;
 
         using (WWW www = new WWW(url))
         {
             yield return www;
 
             texture = www.texture;
             Rect rec = new Rect(0f, 0f, www.texture.width, www.texture.height);
             sprite = Sprite.Create(texture, rec, Vector2.one / 2f, 100f);
             if (image != null)
             {
                 image.sprite = sprite;
                 //image.color = Color.cyan;
             }
         }
     }

using the string from the parameter url the image won't load, only giving the red question mark on the white background. However when i hardcode the URL into the function (as commented out in the code section above) the image loads just fine.

i pass the arguments from the following piece of code:

      ResponseClass response = QueryResponseQueue.GetResponse(sequenceNumber);
        string url = response.data[1];
        StartCoroutine(LoadImage(url, image));

ResponseClass contains int sequenceNumber and string[] data of which data[0] is the status of the query (OK for succeeded query, error otherwise, this returns OK) and data[1] is the url of the image (which works in the browser if i log it and input it into a browser).

I have tried removing any spaces that might occur at the end of the string and have logged the result from before and after i hardcode in the url. both Debug.Log(url); (before and after hardcoding) print the exact same string.

thanks in advance!

-Remy

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

0 Replies

· Add your reply
  • Sort: 

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

74 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Does anyone have a solution for async image loading from url? 1 Answer

How to get a random image url from google image search 0 Answers

Map an Image onto an object from a URL 0 Answers

How to read URL parameters from Unity WebGL Build 4 Answers

loading Images from streaming assets in Android 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