Re: [MSEide-MSEgui-talk] display images

2017-10-27 Thread Martin Schreiber
On Friday 27 October 2017 14:02:25 fredvs wrote: > Hello. > > Can MSE display animated png ? > No. Maybe the frames can be extracted with GraphicksMagick and the image tick made with tanimtimer. Martin -- Check out the

Re: [MSEide-MSEgui-talk] display images

2017-10-27 Thread code dz
thanks , i'll continue using fpimage , it's a bit slow yes , but i don't like dependency ;) i once tried to translate stb_image.h (https://github.com/nothings/stb/blob/master/stb_image.h) to pascal but i found that the author used c++ sse intrinsic , which is tricky to translate to pascal.

Re: [MSEide-MSEgui-talk] display images

2017-10-27 Thread fredvs
Hello. Can MSE display animated png ? https://en.wikipedia.org/wiki/APNG This because mp3 picture-tag can only deal with png or jpg images. (And because no mp3 player exists that can render animated png pictures). Thanks. Fre;D -- Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/

Re: [MSEide-MSEgui-talk] display images

2017-10-27 Thread Martin Schreiber
On Friday 27 October 2017 13:23:17 code dz wrote: > i used this code to load images > the listview display sliced images , how to display stretched image ? > > for i:=0 to 9 do begin > bmp := tmaskedbitmap.create(bmk_rgb); > bmp.loadfromfile(imgDir+img_names[i]); >

Re: [MSEide-MSEgui-talk] display images

2017-10-27 Thread code dz
i used this code to load images the listview display sliced images , how to display stretched image ? procedure tmainfo.on_create(const sender: TObject); const imgDir = 'imgs/'; var img_names : array[0..9] of string = ('1.png','2.png','3.jpg','4.png','5.png',

Re: [MSEide-MSEgui-talk] display images

2017-10-27 Thread code dz
thanks . i'll test -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot ___ mseide-msegui-talk mailing

Re: [MSEide-MSEgui-talk] display images

2017-10-27 Thread Martin Schreiber
On Friday 27 October 2017 11:00:27 code dz wrote: > there are more than 80 images (png , jpg) with sizes (512x512 , > 1024x1024 , 256x256 , 128x128) > They will be stretched to the tumbnail size while loading so it probably is OK. 80 48x48 thumbnails occupy sqrt(80)*48 = 430*430 pixels on the

Re: [MSEide-MSEgui-talk] display images

2017-10-27 Thread code dz
there are more than 80 images (png , jpg) with sizes (512x512 , 1024x1024 , 256x256 , 128x128) -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot

Re: [MSEide-MSEgui-talk] display images

2017-10-27 Thread Martin Schreiber
On Friday 27 October 2017 10:28:07 code dz wrote: > Hi Martin > i want to display all the images in a particular folder as a > thumbnails , what is the proper widgets for that ? . > If there are not too much items and the size is small a tlistview with an accompanied timagelist. Martin

[MSEide-MSEgui-talk] display images

2017-10-27 Thread code dz
Hi Martin i want to display all the images in a particular folder as a thumbnails , what is the proper widgets for that ? . thanks -- Check out the vibrant tech community on one of the world's most engaging tech sites,