Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Advanced / BitmapData.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SemanticResultKey.cs
- WebServiceEnumData.cs
- FilterEventArgs.cs
- FormViewCommandEventArgs.cs
- StandardTransformFactory.cs
- SqlBuilder.cs
- IChannel.cs
- ClientOptions.cs
- TableLayoutPanelCellPosition.cs
- DataListCommandEventArgs.cs
- SHA384.cs
- CodeMemberEvent.cs
- FontStyles.cs
- ComponentDispatcherThread.cs
- MapPathBasedVirtualPathProvider.cs
- SmiEventStream.cs
- CatalogZone.cs
- oledbmetadatacollectionnames.cs
- ScaleTransform.cs
- ColumnReorderedEventArgs.cs
- AnnotationDocumentPaginator.cs
- MetadataArtifactLoaderCompositeFile.cs
- HtmlAnchor.cs
- DataGridViewButtonColumn.cs
- PkcsUtils.cs
- DesignerDataConnection.cs
- NominalTypeEliminator.cs
- RecordBuilder.cs
- FontUnit.cs
- NullableBoolConverter.cs
- XPathBuilder.cs
- ContainerSelectorActiveEvent.cs
- SQLCharsStorage.cs
- ClientCultureInfo.cs
- XmlAttribute.cs
- LocalizationCodeDomSerializer.cs
- CustomLineCap.cs
- SecurityHelper.cs
- XPathScanner.cs
- StylusPointPropertyInfo.cs
- DataGridViewRowPostPaintEventArgs.cs
- TableLayoutPanelBehavior.cs
- initElementDictionary.cs
- List.cs
- ErrorRuntimeConfig.cs
- SecurityState.cs
- Wizard.cs
- LateBoundBitmapDecoder.cs
- HostingPreferredMapPath.cs
- MSAAWinEventWrap.cs
- UnionExpr.cs
- CheckBoxPopupAdapter.cs
- SqlCommand.cs
- DesignDataSource.cs
- brushes.cs
- AdRotator.cs
- ChildrenQuery.cs
- IdentityHolder.cs
- PointIndependentAnimationStorage.cs
- DataMemberAttribute.cs
- XmlObjectSerializerReadContextComplexJson.cs
- SourceInterpreter.cs
- EffectiveValueEntry.cs
- SingleKeyFrameCollection.cs
- WebRequest.cs
- JavaScriptSerializer.cs
- RichTextBoxConstants.cs
- AnonymousIdentificationModule.cs
- BitmapInitialize.cs
- HwndHostAutomationPeer.cs
- OutKeywords.cs
- ContainerUIElement3D.cs
- EntityTypeBase.cs
- GetFileNameResult.cs
- GeneralTransform3D.cs
- IOException.cs
- SimpleHandlerFactory.cs
- SqlMethodTransformer.cs
- EntityDataSourceSelectedEventArgs.cs
- WebInvokeAttribute.cs
- HMACSHA384.cs
- PasswordTextNavigator.cs
- TableCellCollection.cs
- DelayedRegex.cs
- CodeLabeledStatement.cs
- DispatchWrapper.cs
- HTMLTextWriter.cs
- ListMarkerLine.cs
- DeviceContext2.cs
- HttpModuleAction.cs
- PersonalizationDictionary.cs
- HighContrastHelper.cs
- FlagsAttribute.cs
- SQLString.cs
- PenThreadPool.cs
- FrameworkContentElement.cs
- TheQuery.cs
- BindingContext.cs
- DefaultTypeArgumentAttribute.cs
- DocumentSignatureManager.cs