Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CommonUI / System / Drawing / Advanced / BitmapData.cs / 1305376 / BitmapData.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Drawing.Imaging {
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System;
using System.Drawing;
using Marshal = System.Runtime.InteropServices.Marshal;
using System.Runtime.InteropServices;
///
///
/// Specifies the attributes of a bitmap image.
///
[StructLayout(LayoutKind.Sequential)]
public sealed class BitmapData {
int width;
int height;
int stride;
int pixelFormat;
IntPtr scan0;
int reserved;
///
///
/// Specifies the pixel width of the .
///
public int Width {
get { return width; }
set { width = value; }
}
///
///
/// Specifies the pixel height of the .
///
public int Height {
get { return height; }
set { height = value; }
}
///
///
/// Specifies the stride width of the .
///
public int Stride {
get { return stride; }
set { stride = value; }
}
///
///
/// Specifies the format of the pixel
/// information in this .
///
public PixelFormat PixelFormat {
get { return (PixelFormat) pixelFormat; }
[SuppressMessage("Microsoft.Performance", "CA1803:AvoidCostlyCallsWherePossible")]
set {
switch(value) {
case PixelFormat.DontCare:
// case PixelFormat.Undefined: same as DontCare
case PixelFormat.Max:
case PixelFormat.Indexed:
case PixelFormat.Gdi:
case PixelFormat.Format16bppRgb555:
case PixelFormat.Format16bppRgb565:
case PixelFormat.Format24bppRgb:
case PixelFormat.Format32bppRgb:
case PixelFormat.Format1bppIndexed:
case PixelFormat.Format4bppIndexed:
case PixelFormat.Format8bppIndexed:
case PixelFormat.Alpha:
case PixelFormat.Format16bppArgb1555:
case PixelFormat.PAlpha:
case PixelFormat.Format32bppPArgb:
case PixelFormat.Extended:
case PixelFormat.Format16bppGrayScale:
case PixelFormat.Format48bppRgb:
case PixelFormat.Format64bppPArgb:
case PixelFormat.Canonical:
case PixelFormat.Format32bppArgb:
case PixelFormat.Format64bppArgb:
break;
default:
throw new System.ComponentModel.InvalidEnumArgumentException("value", (int)value, typeof(PixelFormat));
}
pixelFormat = (int) value;
}
}
///
///
/// Specifies the address of the pixel data.
///
public IntPtr Scan0 {
get { return scan0; }
set { scan0 = value; }
}
///
///
/// Reserved. Do not use.
///
public int Reserved {
// why make public??
//
get { return reserved; }
set { reserved = value; }
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConfigXmlText.cs
- PeerSecurityHelpers.cs
- RequestCache.cs
- Keywords.cs
- MSG.cs
- PartialArray.cs
- ApplicationFileParser.cs
- ObjectNotFoundException.cs
- ObjectItemConventionAssemblyLoader.cs
- dsa.cs
- BitmapEffectDrawingContextState.cs
- KeyedHashAlgorithm.cs
- HttpHandlerAction.cs
- XmlSerializerImportOptions.cs
- ProtocolsConfiguration.cs
- AudioFormatConverter.cs
- ChtmlCalendarAdapter.cs
- IndicFontClient.cs
- NullableDoubleAverageAggregationOperator.cs
- ObjectHelper.cs
- SQlBooleanStorage.cs
- XamlPoint3DCollectionSerializer.cs
- Color.cs
- ImageListStreamer.cs
- RequestQueue.cs
- LicenseContext.cs
- ClientSession.cs
- DataGridItem.cs
- MatchAttribute.cs
- KnownBoxes.cs
- WebServiceClientProxyGenerator.cs
- RightsManagementInformation.cs
- ContainerUtilities.cs
- FixedSOMPageElement.cs
- OrderPreservingPipeliningMergeHelper.cs
- Helpers.cs
- DataGridPagerStyle.cs
- Panel.cs
- _OverlappedAsyncResult.cs
- ToolStripSystemRenderer.cs
- printdlgexmarshaler.cs
- ToolStripDropDownButton.cs
- DrawToolTipEventArgs.cs
- Rotation3D.cs
- HtmlFormAdapter.cs
- PriorityBinding.cs
- WindowAutomationPeer.cs
- xamlnodes.cs
- ByteArrayHelperWithString.cs
- OracleConnectionStringBuilder.cs
- AuthorizationRuleCollection.cs
- XPathParser.cs
- InternalSendMessage.cs
- BrowserDefinition.cs
- XpsS0ValidatingLoader.cs
- WindowsHyperlink.cs
- DrawingContextDrawingContextWalker.cs
- DataServiceEntityAttribute.cs
- PackageProperties.cs
- MetaType.cs
- InfoCardTrace.cs
- ObjectDataSource.cs
- DeflateStream.cs
- StyleHelper.cs
- URIFormatException.cs
- DataBindingExpressionBuilder.cs
- ObjectRef.cs
- DataObject.cs
- SynthesizerStateChangedEventArgs.cs
- LineBreakRecord.cs
- Int32Animation.cs
- GridItemProviderWrapper.cs
- BufferedStream.cs
- ConfigurationPermission.cs
- XsltArgumentList.cs
- XmlILConstructAnalyzer.cs
- CompilerResults.cs
- Content.cs
- AuthorizationRule.cs
- HMACSHA384.cs
- NetPipeSectionData.cs
- ClientEndpointLoader.cs
- ZipPackage.cs
- DBSqlParser.cs
- StylusOverProperty.cs
- NameValuePermission.cs
- SessionEndedEventArgs.cs
- DataException.cs
- DrawingBrush.cs
- ObjectHandle.cs
- SizeAnimationClockResource.cs
- WebPartConnectVerb.cs
- WebServiceHandler.cs
- ManagementEventWatcher.cs
- DataGridViewTextBoxColumn.cs
- LayoutInformation.cs
- CharacterHit.cs
- CheckBox.cs
- PopupRootAutomationPeer.cs
- Transform.cs