Advanced Forum Search Results
-
Hello,
Does anyone have any idea as to how to adjust the brightness and contrast of the image?
Thanks,
Rajeev
-
I have a file server conatining DICOM(image) files. I need to connect to that server & get all the images as stream. the images will be residing on a path on the file server. How do I do this in SIlverlight?
Thanks,
Rajeev
-
GPU support for graphics
Enhance isolated storage performance
Interconvertibility from WPF to Silverlight
Ability to porcess images
Ability to control max & min threads in a thread pool.
-
Thanks for your reply again. I did try that but its still takes 3 mins. DO you think can this be done in any other way?
All I need is avoid asking the user everytime to load this file. One time may would be good & then I would need to implicitly load this file.
Any suggestions?
-
I have an image inside a view box. When I zoom an image, the view box scales & i have scroll bars adjusted accrodingly.
However, I have a probelm when I rotate & zoom an image. Say for ex- if I rotate 90 deg, image does not fit or in other words, the scroll viewer does not get adjusted accordingly & the image gets truncated. I ...
-
This line - LoadFromBinary(streamReader); break; is taking 4 mins
case DictionaryFileFormat.BinaryFile:
LoadFromBinary(streamReader); break;
But when I use open file dialog without iso, it loads in ...
-
Here it is: This file is 145 kb file only. It takes 4 mins for me to read this file - too long by stretch of imagination. Let me know if you need the file. Not sure if I can attach from here.public void LoadFrom(string fileName, DictionaryFileFormat fileFormat)
{
if (!IsEmpty) Clear();
...
-
The reason why I want to do that - I have several images loaded with borders on the grid. I route an event say from border.MouseMove += new Mouse_move....., & then I need to get specific information related to that image as tool tip.
This does not work even if I set top tip for a simple control like button.
Any ideas?private void ...
-
Hello, I'm using isolated storage to store & retrieve a file stream. This file is in binary format & is about 150k. First I'm checking if the file is already there in isolated storage & if not I'm adding it there. The issue is when the reading from isolated storage, its taking a hell lot of time (almost --4 mins) to ...
-
Thanks for the reply. Can you provide an example.
My code looks like thisBinaryReader binaryReader = new BinaryReader(streamReader.BaseStream);
while (streamReader.BaseStream.Position < streamReader.BaseStream.Length)
{
try
{int group = binaryReader.ReadInt32();
int element = binaryReader.ReadInt32();Tag tag = new Tag(group, ...