Search Issue Tracker
Won't Fix
Votes
1
Found in
2017.1.1f1
Issue ID
971364
Regression
No
Unity crashes at GdipAlloc when saving bitmap to memory stream
How to reproduce:
1. Open given Unity project
2. Open scene "DoubleScene"
3. Enter play mode
Reproducible with: 5.6.4p3, 2017.1.2p3, 2017.2.0p3, 2017.3.0b10, 2018.1.0a5
Note: Script "PlayerRightEyeVideo.cs" crashes at line 38
Comments (1)
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
- "Shader warning in 'Hidden/Light2D': implicit truncation of vector type" is thrown when building Universal 2D template
- AI Assistant breaks compilation of packages using System.Runtime.CompilerServices.Unsafe via auto-referencing
- Unity Hub checks the "Documentation" module by default on the 6.4 and 6.5 streams despite that it was unchecked with the previous installs
- Shortcut that toggles between Dopesheet and Curves Views in the Animation Window's Timeline is mislabed
- Property List Items Overlap onto the Property List's top edge when scrolling through a long Property List
neosca
Jan 16, 2018 06:05
Same here, below is a sample function in which Unity is crashing when creating a new bitmap from memory stream.
public void tex(Texture2D t,string pictureName){
byte[] b = t.EncodeToPNG ();
var ms = new MemoryStream(b);
bb = new Bitmap (ms); //UNITY CRASHES ON THIS LINE
bb.Save(Application.persistentDataPath + "/" + pictureName + ".png" ,System.Drawing.Imaging.ImageFormat.Png);
}