1
Notice
Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
2
FLAC / Re: FLAC decoder testbench
Last post by Porcus -https://wiki.hydrogenaud.io/index.php?title=FLAC_decoder_testbench&diff=35608&oldid=35607
3
foobar2000 mobile / Feature request: Lyric view
Last post by warpbrother -I would like to request a lyric view for Foobar2000 on iOS. A feature that Apple Music or 3rd Party Apps like Emby already support. The lyrics can either be in the file itself or a txt file placed next to the file.


Thanks a lot
Stefan
4
foobar2000 mobile / Re: FLAC seeking not working via FTP
Last post by warpbrother -Thanks
5
3rd Party Plugins - (fb2k) / Re: Columns UI
Last post by iridescentaudio -6
foobar2000 mobile / Library indexing in 1.3 extremely slow on a microsd card?
Last post by Goratrix -7
foobar2000 mobile / Re: Playback Error
Last post by kode54 -8
FLAC / Re: FLAC decoder testbench
Last post by kode54 -9
3rd Party Plugins - (fb2k) / Re: JScript Panel
Last post by marc2k3 -https://github.com/marc2k3/jscript-panel/releases
10
3rd Party Plugins - (fb2k) / Re: JScript Panel
Last post by marc2k3 -gr.DrawImage(utils.LoadImage("o:\\1.jpg"),0,0,200,200,0,0,0,200);
A picture with zero size will invalidate all drawings.
Not sure what you mean?? If the image is not valid, utils.LoadImage should return null which should cause a script error.
If you unsure about an image existing or being valid then you should check it something like this...
Code: [Select]
var image = utils.LoadImage("o:\\1.jpg");
function on_paint(gr) {
if (image) {
gr.DrawImage(image,0,0,200,200,0,0,0,200);
}
}