Cyotek.Windows.Forms.ImageBox
Cyotek.Windows.Forms.ImageBox copied to clipboard
The ImageBox is a custom control for displaying images. It supports zooming, scrolling, panning, region selection and much more!
While load a big image, for example 15000*8000 pixels, DrawImage almost always throw an exception 'Out of Memeory'. I tested a solution, which works very well. Its key point is...
Hi, i am overriding OnPaint and draw an overlay on my image. Can I Somehow save that whole construct of Image + Overlay in a .BMP file? When I use...
Hello, Thank for your project. I got an issue. I tried to hide scrollbar (both vertical and horizontal bar) of ImageBox: ``` c# imageBox.AutoScroll = false; imageBox.VerticalScroll.Visible = false; imageBox.HorizontalScroll.Visible...
When will you consider supporting. Net 5.0?
This is an excellent and versatile control, I am using the ImageBoxEx code (v1.1) extending the ImageBox v1.4 found in the latest NuGet package. I am using ImageBoxEx because I...
First off - Richard Great work! I have some print code that I would love to have as a form component. The Print routine now currently assumes Width, Length and...
I visited cryotek.com web site, and found that someone had asked this, and you replied that it had already been asked in GitHub. But I could not find it here,...
Hi, I placed below code in constructor of form ``` using (Graphics g = imageBox1.CreateGraphics()) { Pen blackPen = new Pen(Color.Black, 3); int x1 = 100; int y1 = 100;...
I was playing around with your control, and I faced inconsistent behavior when a region of the image is selected, and the windows is then maximized. If the container window...