Re: [Gimp-user] reading from txt file

2019-07-08 Thread Simon Budig
Hi. charlysangel (for...@gimpusers.com) wrote: > I've tried to read from file with code below > > (let* ((fd (fopen filename))) >(let*( > (c (fread 1 fd)) > (res "") > ) >(while (and c (not (equal? c " "))) > (set! res (string-append res c)) > (set! c

Re: [Gimp-user] reading from txt file

2019-07-08 Thread Shlomi Fish
On Mon, 08 Jul 2019 10:32:54 +0200 charlysangel wrote: > Hi ! > > I want to create a multi-layer file by reading from a txt file x/y position > and image name. > > I've tried to read from file with code below > > (let* ((fd (fopen filename))) > (let* ( >

[Gimp-user] ghost outline

2019-07-08 Thread rich404
>Newbie here. When removing background from black and white line art, >there remains a thin white ghost outline around the black object. >Really shows up when a color background layer is below. Especially a >problem as I want to use as a logo. Cannot find any tutorials on this >except as removing

[Gimp-user] reading from txt file

2019-07-08 Thread charlysangel
Hi ! I want to create a multi-layer file by reading from a txt file x/y position and image name. I've tried to read from file with code below (let* ((fd (fopen filename))) (let* ( (c (fread 1 fd))