Can I make .png files with programming also what do you use tsr sprites - Printable Version +- The VG Resource (https://www.vg-resource.com) +-- Forum: Archive (https://www.vg-resource.com/forum-65.html) +--- Forum: July 2014 Archive (https://www.vg-resource.com/forum-139.html) +---- Forum: Other Stuff (https://www.vg-resource.com/forum-6.html) +----- Forum: Questions, Info, and Tutorials (https://www.vg-resource.com/forum-89.html) +----- Thread: Can I make .png files with programming also what do you use tsr sprites (/thread-21478.html) |
Can I make .png files with programming also what do you use tsr sprites - ZeldaClassicEXPERT - 09-21-2012 This is a two subjects in one topic topic. Basically this thread is about can I program to make my own .png files and also what do you or anyone else or both use spriters resource sprites for? I known about a user on http://sandbox.yoyogames.com/ who accepted donations in Super Mario Bros. Infinity and I assume the sprites he used was from spriters resource. RE: Can I make .png files with programming also what do you use tsr sprites - Sengir - 09-21-2012 (09-21-2012, 06:51 PM)ZeldaClassicEXPERT Wrote: can I program to make my own .png files yes, in C# for instance you can create an empty bitmap variable and fill it with programmatically-generated pixel data. this can be saved to a file RE: Can I make .png files with programming also what do you use tsr sprites - ZeldaClassicEXPERT - 09-22-2012 Thank you so super very very much I appreciate your help : ) ; ) RE: Can I make .png files with programming also what do you use tsr sprites - Previous - 09-22-2012 Yea, sure. Generally, every programming language that can write files should be suitable. However, the PNG format is hilariously complicated, so you'd better use one that has finished libraries available. C# has what you need, I bet Java would have them too, C++ has anything somewhere on the internet, there's libraries for Flash AS3. For Delphi Pascal, I use pngdelphi, also found on the internet. Theoretically, you could also write your own code, but that is far from easy, so just search the internet for available libraries, classes or source code to load/save PNG from whatever programming language you want to use. RE: Can I make .png files with programming also what do you use tsr sprites - ZeldaClassicEXPERT - 09-23-2012 Cool and thank you all. Also I use spriters resource sprites in games for my own use sometimes (rarely though). |