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 ArseneySorokin · Oct 21, 2015 at 01:53 PM · spritetexture2dimagescreenshotreadpixels

Using Texture2D.GetPixels() to take a screenshot and then show it on an Image - iOS problems.

Hi guys,

I'm trying to take a screenshot and then show it on an Image using Sprite.Create. This works perfectly on both PC and Android, but on iOS it only puts part of the screen on the image. How can I fix that?

 Texture2D tex = new Texture2D(Screen.width,(int)((1672 / 1920f) * Screen.height));
 tex.ReadPixels(new Rect(0, 0, Screen.width,(int)((1672 / 1920f) * Screen.height)), 0, 0);
 tex.Apply();
 img.gameObject.SetActive (true);
 img.sprite = Sprite.Create(tex, new Rect(0, 0, tex.width, tex.height), new Vector2(0.5f, 0.5f));

Thanks in advance,

Arseney

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

Answer by BeauWorlds · Oct 22, 2015 at 08:12 AM

I couldn't tell you why it's only putting on a part of the texture, but you could try using Application.CaptureScreenshot() to take the screenshot, the problem is that this saves it as a file rather than returning a texture or sprite, but you could then use the WWW class to load this file (Which is saved to the PersistentDataPath on iOS)

 void GetScreenShot(){
      Application.CaptureScreenshot("Screenshot.png");
      StartCoroutine(LoadImage());
 }
 Enumerator LoadImage(){
      WWW www = new WWW("File://"+Application.persistentDataPath+"/Screenshot.png");
 
      yield return www;
 
      Texture2D tex = www.texture;
 
     // and I'm sure you can handle the rest!
 }

You'll need to create a sprite with the WWW.texture and voila.

I've not tried this in unity so apologies if you need to correct some things, the "File://" differs on some platforms I believe, but I think this right for iOS, see the WWW documentation for more details.

I've never used Application.CaptureScreenshot before, you may find that it takes time to save, and calling the WWW straight away may not work, so you'll need to wait.

I really hope this helps and looking forward to hearing if it works! :)

Beau C

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

35 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

Related Questions

Texture.Apply() Crashes at Resolutions under 1920x1080 1 Answer

Using Screenshot as Texture 4 Answers

[CLOSED]How to take a screenshot and apply it as a texture to a sprite? 1 Answer

Strange Rearranging when copying Texture2D 0 Answers

Texture2D creating blurry textures 1 Answer


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