Welcome Guest! To enable all features please try to register or login.
Image Sizing
Andi
#1 Posted : Thursday, September 24, 2015 8:44:32 AM(UTC)


Rank: Forum Regular

Joined: 12/3/2013(UTC)
Posts: 94
Based on the 1024x1024 512x256 etc, do all variables work under this concept? 768x320 and so on? As long as it's a multiple of 64?

Thanks
Quote:
"If only our eyes saw souls instead of bodies, how very different our ideals of beauty would be."


Tergiet
#2 Posted : Thursday, September 24, 2015 9:21:08 AM(UTC)


Rank: Veteran Forum Member

Joined: 8/24/2010(UTC)
Posts: 2,179
Location: Virgina
Medals:
Originally Posted by: Andi_Sterling_ Go to Quoted Post
Based on the 1024x1024 512x256 etc, do all variables work under this concept? 768x320 and so on? As long as it's a multiple of 64?

Thanks


Although they are multiples of 64, that is not the reason for using 1024,512 etc. It is them being a "power of 2" examples: 2^2=4 2^3=8 2^6=64..... 2^9=256, 2^10-1024...

All powers of 2 will also be multiples of each preceding power of two, 64 is just one of those.


2 users thanked Tergiet for this useful post.
Andi on 9/24/2015(UTC), LazTopCat on 9/24/2015(UTC)
Andi
#3 Posted : Thursday, September 24, 2015 9:45:19 AM(UTC)


Rank: Forum Regular

Joined: 12/3/2013(UTC)
Posts: 94
Originally Posted by: Tergiet Go to Quoted Post
Originally Posted by: Andi_Sterling_ Go to Quoted Post
Based on the 1024x1024 512x256 etc, do all variables work under this concept? 768x320 and so on? As long as it's a multiple of 64?

Thanks


Although they are multiples of 64, that is not the reason for using 1024,512 etc. It is them being a "power of 2" examples: 2^2=4 2^3=8 2^6=64..... 2^9=256, 2^10-1024...

All powers of 2 will also be multiples of each preceding power of two, 64 is just one of those.




If I'm understanding correctly, then 512 x 384 would not be an appropriate size?
Quote:
"If only our eyes saw souls instead of bodies, how very different our ideals of beauty would be."


1 user thanked Andi for this useful post.
Tergiet on 9/24/2015(UTC)
Hot_Liquor
#4 Posted : Thursday, September 24, 2015 10:06:09 AM(UTC)


Rank: Veteran Forum Member

Joined: 9/11/2010(UTC)
Posts: 3,279
Originally Posted by: Andi_Sterling_ Go to Quoted Post
Originally Posted by: Tergiet Go to Quoted Post
Originally Posted by: Andi_Sterling_ Go to Quoted Post
Based on the 1024x1024 512x256 etc, do all variables work under this concept? 768x320 and so on? As long as it's a multiple of 64?

Thanks


Although they are multiples of 64, that is not the reason for using 1024,512 etc. It is them being a "power of 2" examples: 2^2=4 2^3=8 2^6=64..... 2^9=256, 2^10-1024...

All powers of 2 will also be multiples of each preceding power of two, 64 is just one of those.




If I'm understanding correctly, then 512 x 384 would not be an appropriate size?


Best practice is square power of 8's 64x64 128x128 256x256 but if this means taking an image and squeezing it making it blurry when used don't do it. Next best thing might be 128x256. All I know is its not worth sacrificing image quality to be PC. Another good practice is use jpg when transparency is not needed this keeps them light weight.
4 users thanked Hot_Liquor for this useful post.
Andi on 9/24/2015(UTC), divingA_WnC on 9/24/2015(UTC), LazTopCat on 9/24/2015(UTC), Anhton_Novo on 9/24/2015(UTC)
Andi
#5 Posted : Thursday, September 24, 2015 10:21:35 AM(UTC)


Rank: Forum Regular

Joined: 12/3/2013(UTC)
Posts: 94
Originally Posted by: Kesha Go to Quoted Post
Originally Posted by: Andi_Sterling_ Go to Quoted Post
Originally Posted by: Tergiet Go to Quoted Post
Originally Posted by: Andi_Sterling_ Go to Quoted Post
Based on the 1024x1024 512x256 etc, do all variables work under this concept? 768x320 and so on? As long as it's a multiple of 64?

Thanks


Although they are multiples of 64, that is not the reason for using 1024,512 etc. It is them being a "power of 2" examples: 2^2=4 2^3=8 2^6=64..... 2^9=256, 2^10-1024...

All powers of 2 will also be multiples of each preceding power of two, 64 is just one of those.




If I'm understanding correctly, then 512 x 384 would not be an appropriate size?


Best practice is square power of 8's 64x64 128x128 256x256 but if this means taking an image and squeezing it making it blurry when used don't do it. Next best thing might be 128x256. All I know is its not worth sacrificing image quality to be PC. Another good practice is use jpg when transparency is not needed this keeps them light weight.


Ok got it! Thanks so much!!
Quote:
"If only our eyes saw souls instead of bodies, how very different our ideals of beauty would be."


Tergiet
#6 Posted : Thursday, September 24, 2015 1:22:42 PM(UTC)


Rank: Veteran Forum Member

Joined: 8/24/2010(UTC)
Posts: 2,179
Location: Virgina
Medals:
Originally Posted by: Andi_Sterling_ Go to Quoted Post
Originally Posted by: Tergiet Go to Quoted Post
Originally Posted by: Andi_Sterling_ Go to Quoted Post
Based on the 1024x1024 512x256 etc, do all variables work under this concept? 768x320 and so on? As long as it's a multiple of 64?

Thanks


Although they are multiples of 64, that is not the reason for using 1024,512 etc. It is them being a "power of 2" examples: 2^2=4 2^3=8 2^6=64..... 2^9=256, 2^10-1024...

All powers of 2 will also be multiples of each preceding power of two, 64 is just one of those.




If I'm understanding correctly, then 512 x 384 would not be an appropriate size?



Image size:
The images don't have to be squares, but each dimension should be some power of 2. So 128x1024, 512x256, etc are ok. But the 384 is not. Use the smallest size you can to achieve your result. A large floor or sky may need to be a large size, but a fork could be done in a very small size. Some older graphics cards cannot read anything over 2048, so keep that in mind.

2
4
8
16
32
64
128
256
512
1024
2048
4096




3 users thanked Tergiet for this useful post.
LazTopCat on 9/24/2015(UTC), Anhton_Novo on 9/24/2015(UTC), Andi on 9/24/2015(UTC)
Users browsing this topic
Guest (2)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Clean Slate theme by Jaben Cargman (Tiny Gecko)
Powered by YAF | YAF © 2003-2010, Yet Another Forum.NET
This page was generated in 0.196 seconds.
TC-IIS-7
3.147.44.182