Page 2 of 2
Re: Image processing routines
Posted: Fri May 02, 2014 1:09 am
by Dreamland Fantasy
lol! Yeah, it's been a while since I've done any programming, but I'm getting back into it.
I'm glad you like my work. Thanks!
Kind regards,
Francis
Re: Image processing routines
Posted: Wed Sep 03, 2014 8:09 pm
by minimy
Good job! Thanks!
Re: Image processing routines
Posted: Thu Sep 04, 2014 1:54 am
by electrochrisso
Dreamland Fantasy wrote:Hi there,
I've just noticed the latest comments on this thread.
I am currently working on revised versions of my image processing routines plus some new routines. One of the things that has already been addressed is support for 32 bit images with an alpha channel.
I'll post the updated version when I'm finished working on them.
Kind regards,
Francis

Re: Image processing routines
Posted: Thu Sep 03, 2020 1:54 am
by AMpos
When I try to compile, it shows this error
Line 117: "Native Types can't be used with pointers"
and the line:
Code: Select all
Protected *mem.l, mem_size.l, mem_pos.l
Any hint? some one has this source code updated?
Thx
Re: Image processing routines
Posted: Thu Sep 03, 2020 4:13 am
by idle
AMpos wrote:When I try to compile, it shows this error
Line 117: "Native Types can't be used with pointers"
and the line:
Code: Select all
Protected *mem.l, mem_size.l, mem_pos.l
Any hint? some one has this source code updated?
Thx
just remove the types from the pointers
Code: Select all
Protected *mem, mem_size.l, mem_pos.l