
Search found 15 matches
- Tue Apr 17, 2007 12:32 pm
- Forum: Announcement
- Topic: egrid-lite
- Replies: 2
- Views: 1597
- Sat Jan 06, 2007 9:48 pm
- Forum: Tricks 'n' Tips
- Topic: Simple image processing
- Replies: 0
- Views: 2924
Simple image processing
Hello,
here are some simple but fairly effective procedures for image manipulation: 180 degrees rotation, 90 degrees rotation, mirror, flip, greyscaling, inversion, image brightness and image contrast. There are probably more elegant ways to implement these things, and certainly more optimized ones ...
here are some simple but fairly effective procedures for image manipulation: 180 degrees rotation, 90 degrees rotation, mirror, flip, greyscaling, inversion, image brightness and image contrast. There are probably more elegant ways to implement these things, and certainly more optimized ones ...
- Mon Jul 17, 2006 6:25 pm
- Forum: Announcement
- Topic: Just another Purebasic Optimizer - New release - JaPBo v1.14
- Replies: 45
- Views: 13473
- Sat Jul 01, 2006 4:59 pm
- Forum: Announcement
- Topic: ov:Lib v0.27 - Stream OggVorbis in PureBasic (3.94 / 4.00)
- Replies: 56
- Views: 23616
Can this be used with oggs packed with PureBasic's packer commands, in a way similar to:
... and if so, how? Tried to play around with it, but couldn't get it to work.
Anyway, thanks to traumatic for a very good lib!
~ B
Code: Select all
CatchSound(#Sound, NextPackFile())
Anyway, thanks to traumatic for a very good lib!
~ B
- Thu Jul 29, 2004 6:08 pm
- Forum: Coding Questions
- Topic: Data-command
- Replies: 2
- Views: 1006
Data-command
Are there any differences between:
Data.S "A banana"
Data.S "An apple"
Data.S "A melon"
(and so on...)
and:
Data.S "A banana", "An apple", "A Melon"
(and so on...)
in efficiency, memory use etc.? I was just wondering because I have a project which will use *a lot* of data-lines and I ...
Data.S "A banana"
Data.S "An apple"
Data.S "A melon"
(and so on...)
and:
Data.S "A banana", "An apple", "A Melon"
(and so on...)
in efficiency, memory use etc.? I was just wondering because I have a project which will use *a lot* of data-lines and I ...
- Fri Nov 14, 2003 6:48 pm
- Forum: Feature Requests and Wishlists
- Topic: CatchMesh
- Replies: 1
- Views: 1096
- Wed Nov 12, 2003 7:38 pm
- Forum: Off Topic
- Topic: Community exploded
- Replies: 12
- Views: 3643
- Wed Nov 12, 2003 7:35 pm
- Forum: Coding Questions
- Topic: Progress Bar Refresh
- Replies: 10
- Views: 2720
Webba, try this:
~ B
Code: Select all
UpdateWindow_(WindowID())
- Sun Nov 09, 2003 7:13 pm
- Forum: Feature Requests and Wishlists
- Topic: [Implemented] Redim PRESERVE
- Replies: 37
- Views: 9209
- Sun Nov 09, 2003 7:00 pm
- Forum: Off Topic
- Topic: Free icon resources?
- Replies: 2
- Views: 2589
Free icon resources?
Anyone have any good tips on where to get free, high-quality icons for Windows?
~ B
~ B
- Fri Nov 07, 2003 6:46 pm
- Forum: Coding Questions
- Topic: GIF LZW Patent Expires
- Replies: 27
- Views: 5863
- Fri Nov 07, 2003 6:29 pm
- Forum: Coding Questions
- Topic: GIF LZW Patent Expires
- Replies: 27
- Views: 5863
Codemonger: check out http://www.wotsit.org -- it has *tons* of documents on file formats including graphics files, documents, archive files etc. Should be in every programmer's link archive!
~ B
~ B
- Wed Nov 05, 2003 8:57 am
- Forum: General Discussion
- Topic: Select : Case : EndSelect Benchmarks?
- Replies: 6
- Views: 2005
For speed-critical code I use If / ElseIf / EndIf rather than Select / Case / EndSelect, but that's only because most other Basic-dialects I've used have slow Select against If. PB's Select does seem quite fast though... Has anyone benchmarked thousands of Select loops against similar If-loops in PB ...
- Sun Nov 02, 2003 9:40 pm
- Forum: Tricks 'n' Tips
- Topic: Balloontips with icons & titles
- Replies: 3
- Views: 2352
- Sun Nov 02, 2003 8:34 pm
- Forum: Tricks 'n' Tips
- Topic: Balloontips with icons & titles
- Replies: 3
- Views: 2352
Balloontips with icons & titles
Hi, my first post here! I haven't seen the code for doing neat balloon-style tooltips with icons & titles here before so I thought I'd post this. Can't remember who posted the original code for doing regular balloontips, but many thanks to him anyway.
Procedure AddToolTip(Handle, Text$, Icon ...
Procedure AddToolTip(Handle, Text$, Icon ...