Debo Posted October 11, 2018 Share Posted October 11, 2018 Hi I am trying to crop a texture coz I need to show posters with rounded corners. Texture size is 400 x 300. With following code it crops texture width and height but not cropping the corners. var texture2 = new PIXI.Texture(imgtexture, new PIXI.RoundedRectangle(0, 0, 350, 200, 20)); I don't see any difference in results if I use above code or below code. var texture2 = new PIXI.Texture(imgtexture, new PIXI.Rectangle(0, 0, 350, 200)); Any idea how can I achieve this? I could use mask but I have to render 7 - 8 rounded rect posters and I think using mask for each poster will be expensive. Quote Link to comment Share on other sites More sharing options...
ivan.popelyshev Posted October 11, 2018 Share Posted October 11, 2018 Make a sprite, mask with graphics, call "generateTexture" on it, get new texture. Quote Link to comment Share on other sites More sharing options...
Debo Posted October 11, 2018 Author Share Posted October 11, 2018 Thanks Ivan! I tried it on my mac and able to generate texture from masked sprite. But couldn't compare the performance. Tomorrow I will try it on box to check the performance. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.