Testers wanted..
-
..to beat the c**p out of my Deluxe Paint clone (especially if you've got experience of working with DPaint - I want to know if I'm getting the look&feel about right!) It's currently in very early stages, doesn't do a good deal of what DPaint did, but does enough to start painting (and most of the basic drawing tools work) It's got no ability to load/save images either (but hey, that's what Alt+PrntScrn are there for!!) Anyway click here[^] to have a look, and if you spot any bugs, or just want to make any comments, there's bug reporting stuff, and forums on it's sourceforge project page (you'll see a link at the top) Thanks peeps! -- Help me! I'm turning into a grapefruit!
-
..to beat the c**p out of my Deluxe Paint clone (especially if you've got experience of working with DPaint - I want to know if I'm getting the look&feel about right!) It's currently in very early stages, doesn't do a good deal of what DPaint did, but does enough to start painting (and most of the basic drawing tools work) It's got no ability to load/save images either (but hey, that's what Alt+PrntScrn are there for!!) Anyway click here[^] to have a look, and if you spot any bugs, or just want to make any comments, there's bug reporting stuff, and forums on it's sourceforge project page (you'll see a link at the top) Thanks peeps! -- Help me! I'm turning into a grapefruit!
Good start to an application you got going there, only suggestion ive got at the mo is to rewrite the fill tool, because it seems to be a little slow. Are you using the Bitmap SetPixel/GetPixel functions?
website // Project : AmmoITX //profile Another Post by NnamdiOnyeyiri
-
Good start to an application you got going there, only suggestion ive got at the mo is to rewrite the fill tool, because it seems to be a little slow. Are you using the Bitmap SetPixel/GetPixel functions?
website // Project : AmmoITX //profile Another Post by NnamdiOnyeyiri
I use GetPixel to read, but GDI+'s DrawLine to do the painting (unless it's a single pixel) - I know it's far from optimal, but it works, and doesn't make my brain hurt the way the other flood fill algorithms here on CP do. I'll probably optimise it a bit at some point, but my main priority is getting everything working have a look at my code[^] - the fill function is about 2/3rds of the way down -- Help me! I'm turning into a grapefruit! Phoenix Paint - back from DPaint's ashes!
-
I use GetPixel to read, but GDI+'s DrawLine to do the painting (unless it's a single pixel) - I know it's far from optimal, but it works, and doesn't make my brain hurt the way the other flood fill algorithms here on CP do. I'll probably optimise it a bit at some point, but my main priority is getting everything working have a look at my code[^] - the fill function is about 2/3rds of the way down -- Help me! I'm turning into a grapefruit! Phoenix Paint - back from DPaint's ashes!
I didnt mean to sound like an expert :) I was just wondering, because I had read SetPixel/GetPixel are slow, but had never used them before, so hadn't tested it.
website // Project : AmmoITX //profile Another Post by NnamdiOnyeyiri