Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

I'm after some opinions from programmers with GDI and/or graphics knowledge.

 

I'm writing some software using C# that requires transition effects between images, like a slide show. As I am an intermediate level programmer and do not have the high level of experience required to write the transistion routines, I'm looking at purchasing external components.

 

So far LEADTOOLS Raster kit looks ok. Does anyone have any other suggestions or ideas. I'm finding documentation for the kit to be scarce.. are there any references around that anyone has seen?

 

Thanks

Posted

Its usually easier in the long run to use your own tools as they can be customised to your needs. GDI+ offers fading effects and some algorythms can simulate a lot of the PowerPoint effects.

 

I've never actually heard of that kit though

.Net allows software to be written for any version of Windows and not break like Unmanaged applications unless using Unmanaged procedures like APIs. If your program uses large amounts of memory but releases it when something else needs it, then what's the problem?
Posted

Hmmm that's interesting. I have quite a few books on GDI/GDI+ and havn't come across any fade features.

 

Could you point me in the right direction AR? Have you seen any good references for this?

Posted

If you have MSDN:

http://ms-help://MS.VSCC/MS.MSDNVS/vbcon/html/vbconPensBrushes.htm

 

Dim MyColor as Color
MyColor = Color.FromArgb(...) 'Specify A for Alpha

.Net allows software to be written for any version of Windows and not break like Unmanaged applications unless using Unmanaged procedures like APIs. If your program uses large amounts of memory but releases it when something else needs it, then what's the problem?
  • *Experts*
Posted

I would guess you'd also want to consider how many effects you want. If you just want a simple slide and a fade, you can probably code them yourself. If you want checkerboard wipes in a spiral pattern, I'd look at 3rd party tools. I've used some LeadTools in the past (a few years ago) and found them useful. Are there really no samples for using the basic wipe functions? Seems odd - I'm sure they have a website where you can post questions or email help.

 

Keep in mind that it sounds like you're going to want to get your fingers wet in the graphics coding at least a little if the point of your application is to do something with images. At the very least, I'd play around with the Graphics, Image, and Bitmap objects and their properties and methods.

 

-nerseus

"I want to stand as close to the edge as I can without going over. Out on the edge you see all the kinds of things you can't see from the center." - Kurt Vonnegut

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...