Click here to Skip to main content
15,905,028 members
Home / Discussions / C#
   

C#

 
GeneralRe: problem with inserting data to access db Pin
PIEBALDconsult8-Jul-09 20:07
mvePIEBALDconsult8-Jul-09 20:07 
GeneralRe: problem with inserting data to access db Pin
MumbleB8-Jul-09 23:09
MumbleB8-Jul-09 23:09 
AnswerRe: problem with inserting data to access db Pin
dan!sh 8-Jul-09 18:48
professional dan!sh 8-Jul-09 18:48 
AnswerRe: problem with inserting data to access db Pin
Dino Mulahusic8-Jul-09 20:50
professionalDino Mulahusic8-Jul-09 20:50 
Questionchange directory access control for common application data folder failed. Pin
CooperWu8-Jul-09 17:46
CooperWu8-Jul-09 17:46 
AnswerRe: change directory access control for common application data folder failed. Pin
CooperWu10-Jul-09 0:03
CooperWu10-Jul-09 0:03 
GeneralRe: change directory access control for common application data folder failed. Pin
brian59821-Jul-09 9:52
brian59821-Jul-09 9:52 
GeneralRe: change directory access control for common application data folder failed. Pin
CooperWu22-Jul-09 15:23
CooperWu22-Jul-09 15:23 
GeneralRe: change directory access control for common application data folder failed. Pin
brian59823-Jul-09 6:22
brian59823-Jul-09 6:22 
GeneralRe: change directory access control for common application data folder failed. Pin
CooperWu23-Jul-09 15:56
CooperWu23-Jul-09 15:56 
QuestionC# and Large Images Pin
awaldro8-Jul-09 17:31
awaldro8-Jul-09 17:31 
AnswerRe: C# and Large Images Pin
Luc Pattyn8-Jul-09 22:38
sitebuilderLuc Pattyn8-Jul-09 22:38 
GeneralRe: C# and Large Images Pin
awaldro9-Jul-09 4:08
awaldro9-Jul-09 4:08 
GeneralRe: C# and Large Images Pin
Alan Balkany9-Jul-09 4:46
Alan Balkany9-Jul-09 4:46 
GeneralRe: C# and Large Images Pin
awaldro9-Jul-09 5:00
awaldro9-Jul-09 5:00 
GeneralRe: C# and Large Images Pin
Huxley Stronghead10-Jul-09 4:00
Huxley Stronghead10-Jul-09 4:00 
GeneralRe: C# and Large Images Pin
awaldro10-Jul-09 4:28
awaldro10-Jul-09 4:28 
GeneralRe: C# and Large Images Pin
Huxley Stronghead10-Jul-09 8:42
Huxley Stronghead10-Jul-09 8:42 
GeneralRe: C# and Large Images Pin
awaldro10-Jul-09 9:21
awaldro10-Jul-09 9:21 
GeneralRe: C# and Large Images Pin
Huxley Stronghead10-Jul-09 11:25
Huxley Stronghead10-Jul-09 11:25 
GeneralRe: C# and Large Images Pin
awaldro13-Jul-09 4:08
awaldro13-Jul-09 4:08 
GeneralRe: C# and Large Images Pin
Huxley Stronghead13-Jul-09 7:11
Huxley Stronghead13-Jul-09 7:11 
GeneralRe: C# and Large Images Pin
Huxley Stronghead11-Jul-09 0:22
Huxley Stronghead11-Jul-09 0:22 
OK, I have my doubts that you actually have a problem here but this could be a solution if you really want to code something ...

Now this idea I already has been mentioned. But I shall explain it a bit deeper and I would like to call it the Google Map approach. It is about cutting the big monster image into smaller pieces, store those pieces on the HDD as temporary files and only load those that are within the view. Which means you will require some sort of zooming function too. Also you will have to calculate the actual visible pixel in the view and the pixel of your image pieces you use. I think this way you could determine whether an image downsize could help. Of course the downsize only will happen to the loaded pieces in the RAM, neither the original nor the cut version on the HDD. If they apply a filter then you should load all the image pieces from HDD, process them and save back.

There may occur some lag because of the image loading time from HDD but hey, they want to work with monster images! However, this approach is some sort of streaming which means you really only load that what you need to work with and not the entire thing. I never coded it before but I think Google did. Sniff | :^)

I came, saw, and then coded.

GeneralRe: C# and Large Images Pin
awaldro13-Jul-09 4:13
awaldro13-Jul-09 4:13 
GeneralRe: C# and Large Images Pin
Huxley Stronghead13-Jul-09 6:59
Huxley Stronghead13-Jul-09 6:59 

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.