Click here to Skip to main content
15,923,006 members
Home / Discussions / C#
   

C#

 
GeneralRe: Byte Arrays Pin
MrEyes3-Oct-03 2:24
MrEyes3-Oct-03 2:24 
GeneralRe: Byte Arrays Pin
Daniel Turini3-Oct-03 5:45
Daniel Turini3-Oct-03 5:45 
GeneralAxBrowser/mshtml annoyances Pin
mephist2-Oct-03 16:07
mephist2-Oct-03 16:07 
GeneralCreating a virtual drive Pin
jij@esenet.dk2-Oct-03 10:32
jij@esenet.dk2-Oct-03 10:32 
GeneralRe: Creating a virtual drive Pin
Blake Coverett2-Oct-03 20:18
Blake Coverett2-Oct-03 20:18 
GeneralRe: Creating a virtual drive Pin
James Simpson6-Oct-03 1:01
James Simpson6-Oct-03 1:01 
GeneralRe: Creating a virtual drive Pin
jij@esenet.dk7-Oct-03 7:04
jij@esenet.dk7-Oct-03 7:04 
GeneralRe: Creating a virtual drive Pin
jij@esenet.dk7-Oct-03 7:05
jij@esenet.dk7-Oct-03 7:05 
GeneralString question Pin
Mike Ellison2-Oct-03 10:24
Mike Ellison2-Oct-03 10:24 
GeneralRe: String question Pin
Loki2-Oct-03 10:38
Loki2-Oct-03 10:38 
GeneralRe: String question Pin
Nathan Blomquist2-Oct-03 10:41
Nathan Blomquist2-Oct-03 10:41 
GeneralRe: String question Pin
Nathan Blomquist2-Oct-03 10:40
Nathan Blomquist2-Oct-03 10:40 
GeneralRe: String question Pin
Daniel Turini2-Oct-03 11:08
Daniel Turini2-Oct-03 11:08 
GeneralRe: String question Pin
Mike Ellison2-Oct-03 11:11
Mike Ellison2-Oct-03 11:11 
GeneralRe: String question Pin
Nick Parker2-Oct-03 13:14
protectorNick Parker2-Oct-03 13:14 
GeneralRe: String question Pin
Mike Ellison2-Oct-03 13:32
Mike Ellison2-Oct-03 13:32 
GeneralCrystal Report Types Difference Pin
Inam2-Oct-03 9:19
Inam2-Oct-03 9:19 
Generalconst v readonly Pin
pseudonym672-Oct-03 9:19
pseudonym672-Oct-03 9:19 
GeneralRe: const v readonly Pin
Blake Coverett2-Oct-03 10:18
Blake Coverett2-Oct-03 10:18 
GeneralRe: const v readonly Pin
pseudonym672-Oct-03 12:05
pseudonym672-Oct-03 12:05 
GeneralRe: const v readonly Pin
leppie2-Oct-03 12:48
leppie2-Oct-03 12:48 
GeneralRe: const v readonly Pin
Daniel Turini3-Oct-03 10:34
Daniel Turini3-Oct-03 10:34 
GeneralRe: const v readonly Pin
James T. Johnson3-Oct-03 20:20
James T. Johnson3-Oct-03 20:20 
GeneralBitmap/Image size limitations Pin
SpinD2-Oct-03 6:26
SpinD2-Oct-03 6:26 
GeneralRe: Bitmap/Image size limitations Pin
Blake Coverett2-Oct-03 9:02
Blake Coverett2-Oct-03 9:02 
If this is not a monochrome bitmap, i.e. 1 bit per pixel, then give up now. You only have 2GB of address space to work with using the current CLR on Win32. Even an 8bit palette image of that size would no longer fit in memory.

If you really need to work with images that size obviously you aren't displaying them on the screen, so don't try to load them all into memory. Don't use Bitmap; treat them as data on the disk.

--
-Blake (com/bcdev/blake)

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.