5,696,576 members and growing! (16,580 online)
Email Password   helpLost your password?
Desktop Development » Miscellaneous » General     Intermediate

Scrollable and RatioStretch PictureBox

By Gil Klod

A scrollable and ratio-stretch picture box control
C#, Windows, .NET 1.0, .NET 1.1, .NETVisual Studio, VS.NET2002, Dev

Posted: 26 Apr 2003
Updated: 26 Apr 2003
Views: 84,746
Bookmarked: 25 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
29 votes for this Article.
Popularity: 5.68 Rating: 3.88 out of 5
4 votes, 13.8%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
6 votes, 20.7%
4
19 votes, 65.5%
5

Introduction

The Visual Studio.NET PictureBox control supports four behaviors of SizeMode property: Normal, StretchImage, AutoSize and CenterImage.

When I needed to use the PictureBox control it lacked two behaviors :

  1. Scrollable - The ability to use the scroll bars in order to view different areas of large image.
  2. RatioStretch - The ability to view stretched image in the same ratio (width / height) of the original image and avoids distortion of the stretched image.

The Viewer control which is available with this article supports the above two behaviors.

Note : This control supports scrolling using the mouse wheel.

Using the code

In order to use the Scrollable and RatioStretch capabilities of the Viewer control, simply add the Viewer control to your project and use it as follows :

    // open an image

    this.viewer1.Image = Image.FromFile(ImageFilepath);
    // set mode as Scrollable

    this.viewer1.ImageSizeMode = SizeMode.Scrollable;

In the sample above, we first load the image from the file specified by ImageFilepath, to the Viewer control. We then set its ImageSizeMode property to Scrollable, so that when the size of the image is greater than the visible area of the Viewer control, scrollbar(s) are added. Now, if we want the image to be displayed to fit within the Viewer control, without affecting the aspect ratio, we set the ImageSizeMode property of the Viewer control to RatioStretch as shown below:

    // set mode as RatioStretch

    this.viewer1.ImageSizeMode = SizeMode.RatioStretch;

That's all.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Gil Klod



Location: Israel Israel

Other popular Miscellaneous articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 23 of 23 (Total in Forum: 23) (Refresh)FirstPrevNext
Generallatest versionmemberalhambra-eidos2:21 1 Aug '08  
Generalhow to make Size long not intmembermaimosa4:04 6 Aug '06  
Questionmanipulate scrollbar value by codememberDaniel Junglen10:13 20 Jun '06  
Generalgoodmemberjinzhecheng21:13 7 Apr '06  
Generalexcellent.. no flicker!memberTim_Mackey2:24 17 Aug '05  
GeneralRe: excellent.. no flicker!membergeahaad8:46 8 May '06  
Generalscrollable and ratiostrech picture Box in Visual FoxPromemberBaba Kh.9:32 16 Apr '05  
GeneralMouseMovememberDerPumuckl4:22 5 Apr '05  
GeneralRe: MouseMovememberachoi65:50 8 Apr '05  
GeneralProblem adding DTC to toolbox...memberrcwatson7:19 10 Mar '05  
GeneralEventsmemberachoi69:28 24 Feb '05  
GeneralWon't this be slowmemberMike Gore3:28 31 Mar '04  
Generalproblems with using design vew and this control?memberdazinith6:14 29 Apr '03  
GeneralRe: problems with using design vew and this control?memberGil Klod7:34 29 Apr '03  
GeneralRe: problems with using design vew and this control?memberdazinith9:33 29 Apr '03  
GeneralAdding custom controls to the toolboxmemberdrewnoakes3:02 28 Aug '03  
GeneralWhat about using a Panel?memberMarc Clifton11:32 27 Apr '03  
GeneralRe: What about using a Panel?memberdazinith9:51 6 May '03  
GeneralRe: What about using a Panel?memberMarc Clifton14:23 6 May '03  
GeneralRe: What about using a Panel?membergabis1:49 6 Aug '03  
GeneralRe: What about using a Panel?memberVertexwahn4:53 22 Aug '05  
QuestionRe: What about using a Panel?memberDr Reedo1:30 1 Feb '06  
AnswerRe: What about using a Panel?memberDr Reedo1:40 1 Feb '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 26 Apr 2003
Editor: Nishant Sivakumar
Copyright 2003 by Gil Klod
Everything else Copyright © CodeProject, 1999-2008
Web17 | Advertise on the Code Project