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 qvatra · Apr 12, 2014 at 10:32 PM · rotationtexture2dmatrixgetpixelsrelative rotation

rotate an image by modifying Texture2D.GetPixels32() array

Is there build in function or any code sample that allows to transform Texture2D.GetPixels32() array in such way that output array would correspond to the same image which was rotated around its center by a specific angle?

Comment
Add comment · Show 1
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
avatar image robertbu · Apr 12, 2014 at 11:18 PM 0
Share

There's no Unity functions for rotating an image, and I'm not aware of code for this functionality. If performance was not an issue, it would be pretty easy to write this functionality using Texture2D.GetPixelBilinear(). Note that as with rotating an rectangular image in Photoshop, there are areas of the new image that will not have source pixels, and there will be source pixels that will not be included in the destination image (given the destination image is the same size). Also it would not be that hard to write your own Bilinear() function using the data from GetPixels32().

2 Replies

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

Answer by qvatra · Apr 14, 2014 at 09:27 PM

finally I've end up with this:

 #pragma strict
 
 var texToDraw : Texture2D;
 var x: int;
 var y: int;
 private var pix1:Color32[];
 private var pix2:Color32[];
 private var pix3:Color32[];
 var angle: int;
 
 function Start (){
         var background : Texture2D = Instantiate(renderer.material.mainTexture);
         pix1 = background.GetPixels32();
         pix2 = texToDraw.GetPixels32();
         var W = texToDraw.width;
         var H = texToDraw.height;
         
 
         
         pix3 = rotateSquare(pix2, Mathf.Deg2Rad*angle);
         
         for (var j = 0; j < H; j++){
             for (var i = 0; i < W; i++) {
                 //pix1[background.width/2 - texToDraw.width/2 + x + i + background.width*(background.height/2-texToDraw.height/2+j+y)] = pix2[i + j*texToDraw.width];
                 pix1[background.width/2 - W/2 + x + i + background.width*(background.height/2-H/2+j+y)] = pix3[i + j*W];
                 
             }
         }
         
         background.SetPixels32(pix1);
         background.Apply();
         renderer.material.mainTexture = background;
 }
 
 function rotateSquare(arr:Color32[], phi:float){
     var x:int;
     var y:int;
     var i:int;
     var j:int;
     var sn:float = Mathf.Sin(phi);
     var cs:float = Mathf.Cos(phi);
     var texture: Texture2D = Instantiate(texToDraw);
     var arr2:Color32[] = texture.GetPixels32();
     var W:int = texture.width;
     var H:int = texture.height;
     var xc: int = W/2;
     var yc: int = H/2;
     
     for (j=0; j<H; j++){
         for (i=0; i<W; i++){
           arr2[j*W+i] = new Color32(0,0,0,0);
           
           x = cs*(i-xc)+sn*(j-yc)+xc;
           y = -sn*(i-xc)+cs*(j-yc)+yc;
           
           if ((x>-1) && (x<W) &&(y>-1) && (y<H)){ 
               arr2[j*W+i]=arr[y*W+x];
           }
         }
     }
     return arr2;
 }
Comment
Add comment · Show 4 · 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
avatar image robertbu · Apr 14, 2014 at 09:50 PM 0
Share

So you are picking the closest pixel and not generating an interpolated color? I assume the color is close enough?

avatar image qvatra · Apr 15, 2014 at 12:09 PM 0
Share

What do you mean by closest pixel? I'm using rotation matrix and translation here to find the exact coordinates for each color pixel. Off-course new coordinates are not always integers so I had to round them... but for the one time rotation the quality is still very good.

avatar image Mangas · Jan 23, 2015 at 09:10 AM 0
Share

qvatra would you be so kind as to explain the calculations made in the script?

I kind of need this. I'm rotating a texture inside a Sprite so the rotations in pixel art look as they should, basically defor$$anonymous$$g themselves while rotating, and I would really like to know what's exactly happening in these sentences:

 x = cs*(i-xc)+sn*(j-yc)+xc;
 y = -sn*(i-xc)+cs*(j-yc)+yc;

What's the meaning of xc and yc? Why are you doing (i - xc) and (j - yc)? I suppose you're using a rotation matrix to do the calculations, but I think I'm still missing something.

Also, I assume X and Y are some kind of offset in the script, though I'm not sure. And the last question, could you explain the math behind this sentence:

pix1[background.width/2 - W/2 + x + i + background.width*(background.height/2-H/2+j+y)] = pix3[i + j*W];

I understand pix3[i + j * W] is the way you run through the whole array, but the left operator is escaping me.

avatar image Benjamin_Philipp · Nov 05, 2016 at 06:48 AM 0
Share

Nice, this works! (well, I tried BeauWorlds' c# solution, to be perfectly accurate)

I assume this was written for cases where the output image is supposed to have the same dimensions as the input, since it appears to crop the corners that would lie outside the resulting edges.

It'll take me some time to pick the code apart to provide a solution where the resulting Texture2D will accommodate the rotated corners as well

avatar image
4

Answer by BeauWorlds · Oct 05, 2016 at 03:18 PM

An excellent answer to your own question! Thank you very much qvarta, you ended a long search for me ! I'm posting this as an answer juste to include a C# version for fellow c# devs! (also I've replaced the floats with doubles and Mathf with System.Math, it improves the accuracy)

using System;

public class ImageRotator {

     public static Texture2D RotateImage(Texture2D originTexture, int angle){
         Texture2D result;

         result = new Texture2D(originTexture.width, originTexture.height);

         Color32[] pix1 = result.GetPixels32();
         Color32[] pix2 = originTexture.GetPixels32();
         int W = originTexture.width;
         int H = originTexture.height;

         int x = 0;
         int y = 0;

         Color32[] pix3 = rotateSquare(pix2, (Math.PI/180*(double)angle), originTexture);

         for (int j = 0; j < H; j++){
             for (var i = 0; i < W; i++) {
                 //pix1[result.width/2 - originTexture.width/2 + x + i + result.width*(result.height/2-originTexture.height/2+j+y)] = pix2[i + j*originTexture.width];
                 pix1[result.width/2 - W/2 + x + i + result.width*(result.height/2-H/2+j+y)] = pix3[i + j*W];

             }
         }

         result.SetPixels32(pix1);
         result.Apply();

         return result;
     }

     static Color32[] rotateSquare(Color32[] arr, double phi, Texture2D originTexture){
         int x;
         int y;
         int i;
         int j;

         double sn = Math.Sin(phi);
         double cs = Math.Cos(phi);
         Color32[] arr2 = originTexture.GetPixels32();
         int W = originTexture.width;
         int H = originTexture.height;
         int xc = W/2;
         int yc = H/2;

         for (j=0; j<H; j++){
             for (i=0; i<W; i++){
                 arr2[j*W+i] = new Color32(0,0,0,0);

                 x = (int)(cs*(i-xc)+sn*(j-yc)+xc);
                 y = (int)(-sn*(i-xc)+cs*(j-yc)+yc);

                 if ((x>-1) && (x<W) &&(y>-1) && (y<H)){ 
                     arr2[j*W+i]=arr[y*W+x];
                 }
             }
         }
         return arr2;
     }
 }


Hope this can help someone, thanks again qvatra !

Comment
Add comment · Show 3 · 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
avatar image vonbetelgeuse · Jul 13, 2018 at 02:24 PM 0
Share

Could you help me with elaborating how to use this please?

I'm unfamiliar with how to use public static Texture2D, I have tried using

RotateImage(texName, 45);

but nothing appears to happen.

avatar image unityfearless · Dec 10, 2020 at 06:36 PM 0
Share

Thank for great post and effort. However the image rotate and then mirror also in c# code.

avatar image OnatKorucu · May 19, 2021 at 02:37 PM 0
Share

Thank you so much, it helped me greatly in my thesis project. But I am not sure how this works. Can you explain it a little bit maybe?

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

26 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

Related Questions

Baking decals into a texture 3 Answers

Set GUI within 4 points - Matrix Rotation/Distortion 0 Answers

Matrices to rotation 1 Answer

How do I apply a rotation to a vector3? 1 Answer

GetPixels returning skewed results on DXT5 Texture 2 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