Search Issue Tracker
Won't Fix
Votes
0
Found in
Issue ID
921215
Regression
No
ImageConversion.LoadImage should load PNGs without alpha channel as RGB24 instead of ARGB32
Expected: loading a non-transparent PNG with ImageConversion.LoadImage results in an RGB24 texture, just like JPG.
Actual: loading a non-transparent PNG with ImageConversion.LoadImage results in an ARGB32 texture.
JPG loads in RGB24, but PNG always loads in RGBA, even if the loaded image has no alpha channel.
Comments (1)
-
Yiming075
Dec 08, 2022 06:47
Unity should add a parameter to enable loadImage in RGB24 and ARGB32! Don't just ask us to use the lossy jpg format!
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Brush Size in the Inspector window does not update when the Brush Size in Scene View is changed
- "ArgumentOutOfRangeException" errors are thrown every time a keyboard key is pressed when renaming a component in UI Builder with a symbol and changing the name after label attribute warning
- Values in "Rect Transform" component are only partially updated when changing values in Prefab Mode
- Same Asset Type Focused Inspectors do not repaint when menus are manipulated
- Bool or Trigger Parameters can be selected via right clicking to the right of a Parameter control in the Animator Window
Resolution Note (2019.3.X):
if we change this behavior now, we may break tons of existing projects ( using PNG without alpha, and dealing with RGBA resulting texture)
Work around to generate RGB 24bits texture is using bmp or jpg if disk storage is an issue