Image processing routines

Share your advanced PureBasic knowledge/code with the community.
User avatar
Dreamland Fantasy
Enthusiast
Enthusiast
Posts: 335
Joined: Fri Jun 11, 2004 9:35 pm
Location: Glasgow, UK
Contact:

Re: Image processing routines

Post 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! :D

Kind regards,

Francis
User avatar
minimy
Enthusiast
Enthusiast
Posts: 552
Joined: Mon Jul 08, 2013 8:43 pm
Location: off world

Re: Image processing routines

Post by minimy »

Good job! Thanks!
If translation=Error: reply="Sorry, Im Spanish": Endif
User avatar
electrochrisso
Addict
Addict
Posts: 989
Joined: Mon May 14, 2007 2:13 am
Location: Darling River

Re: Image processing routines

Post 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
8)
PureBasic! Purely the best 8)
AMpos
Enthusiast
Enthusiast
Posts: 128
Joined: Fri Jun 05, 2020 12:47 am

Re: Image processing routines

Post 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
User avatar
idle
Always Here
Always Here
Posts: 5836
Joined: Fri Sep 21, 2007 5:52 am
Location: New Zealand

Re: Image processing routines

Post 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
Windows 11, Manjaro, Raspberry Pi OS
Image
Post Reply