2
votes
Image cropping C# without .net library
You could easily write crop yourself in fjcore. Start with the code for Resizer
h …
2
votes
Would it be useful to have method return values for null objects?
It's a pattern called Null Object
http://en.wikipedia.org/wiki/Null_Object_pattern
…
0
votes
Getting image dimensions without reading the entire file
Yes, you can absolutely do this and the code depends on the file format. I work for an imaging vendor (Atalasoft), and our product provides a …
0
votes
What is the best way to improve ASP.NET/C# compilation speed?
You can precompile the site, which will make the first run experience better
http://msdn.microsoft.com/en-us/l …
3
votes
What is the easiest way to upgrade a large C# winforms app to WPF
Do you use a lot of User controls for the pieces? WPF can host winform controls, so you could piecewise bring in parts into the main form.
…
2
votes
.NET Scanning API
Disclaimer: I work for Atalasoft
Atalasoft has a product, DotTwain, which has no COM interop (just direct calls to t …
0
votes
How do I check if the scanner is plugged in (C#, .NET TWAIN)
Disclaimer: I work for Atalasoft
Our DotTwain product can do this.
…
1
vote
Problem with converting enumerations in C++\CLI
I think enums don't use the ^ -- try removing it from the property declaration and get().
…
2
votes
How to permanently disable region-folding in Visual Studio 2008
It's not permanent, but the keystrokes Ctrl-M Ctrl-L expand the regions in a file
…
1
vote
why would an application acts differently after VS debugger is attached?
Usually, timing issues. Are there threads involved? If C/C++, then there could be a lot of reasons because of how memory management bugs might behave.
…
1
vote
Why doesn’t VB.NET 9 have Automatic Properties like C# 3??
C# and VB.NET don't exactly line up on new features in their first versions. Usually, by the next version C# catches up with some VB.NET features and vice versa. I kind of like literal XML from V …
6
votes
How to make my code run on multiple cores?
You might want to take a look at the parallel extensions for .NET
http://msdn.com/concurrency
…
3
votes
.NET + Copying large amounts of memory tricks
I think you can count on Buffer.BlockCopy() to do the right thing
http://msdn.microsoft.com/en- …
14
votes
Algorithm for counting the number of unique colors in an image
If you need an exact number, then you are going to have to loop over all of the pixels. Probably storing the color and a count in a hash is the best way to go because of the sparseness of the colo …
0
votes
GDI+ System.Drawing.Bitmap gives error Parameter is not valid intermittently
You not only need enough memory, it needs to be contiguous. Over time memory becomes fragmented and it becomes harder to find big blocks. There aren't a lot of good solutions to this, aside from …
