up vote 1 down vote favorite
1
share [g+] share [fb]

I've found a solution that looks quite elegant but i don't understand its behavior. If i apply the cropping algorithm before adding my image to Canvas.Children collection it does not work. Why? Ideally i need a function like Image Crop(Image source, int X, int Y, int width, int heigh) which returns a new cropped Image instance and does not require source/cropped images to be placed to Canvas. Is it possible?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 4 down vote accepted

I would guess that the problem you are running into is that when you are calling Render on the WriteableBitmap, the image source has not downloaded yet, so the Image renders nothing into the WriteableBitmap.

To workaround this, you will need to wait for the image source to download; you can handle the Image.ImageOpened event to get notified when this happens.

link|improve this answer
Thanks! I've set Build Action for my image to 'Content' and retrieved it using Application.GetResourceStream(). All works fine now! – UserControl Sep 17 '09 at 10:49
I found the same issue when I wrote the blog post. In the end I opted for the simpler sample code and just added it to the canvas. I have update the blog post with your question. Thanks – John Sep 20 '09 at 17:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.