Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Imaging / GifBitmapEncoder.cs / 1305600 / GifBitmapEncoder.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, All Rights Reserved // // File: GifBitmapEncoder.cs // //----------------------------------------------------------------------------- using System; using System.Security; using System.Security.Permissions; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using MS.Internal; using MS.Win32.PresentationCore; using System.Diagnostics; using System.Windows.Media; using System.Globalization; using System.Runtime.InteropServices; using System.Windows.Media.Imaging; namespace System.Windows.Media.Imaging { #region GifBitmapEncoder ////// Built-in Encoder for Gif files. /// public sealed class GifBitmapEncoder : BitmapEncoder { #region Constructors ////// Constructor for GifBitmapEncoder /// ////// Critical - will eventuall create unmanaged resources /// PublicOK - all inputs are verified /// [SecurityCritical ] public GifBitmapEncoder() : base(true) { _supportsPreview = false; _supportsGlobalThumbnail = false; _supportsGlobalMetadata = false; _supportsFrameThumbnails = false; _supportsMultipleFrames = true; _supportsFrameMetadata = false; } #endregion #region Internal Properties / Methods ////// Returns the container format for this encoder /// ////// Critical - uses guid to create unmanaged resources /// internal override Guid ContainerFormat { [SecurityCritical] get { return _containerFormat; } } ////// Setups the encoder and other properties before encoding each frame /// [SecurityCritical] internal override void SetupFrame(SafeMILHandle frameEncodeHandle, SafeMILHandle encoderOptions) { HRESULT.Check(UnsafeNativeMethods.WICBitmapFrameEncode.Initialize( frameEncodeHandle, encoderOptions )); } #endregion #region Internal Abstract /// Need to implement this to derive from the "sealed" object internal override void SealObject() { throw new NotImplementedException(); } #endregion #region Data Members ////// Critical - CLSID used for creation of critical resources /// [SecurityCritical] private Guid _containerFormat = MILGuidData.GUID_ContainerFormatGif; #endregion } #endregion // GifBitmapEncoder } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, All Rights Reserved // // File: GifBitmapEncoder.cs // //----------------------------------------------------------------------------- using System; using System.Security; using System.Security.Permissions; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using MS.Internal; using MS.Win32.PresentationCore; using System.Diagnostics; using System.Windows.Media; using System.Globalization; using System.Runtime.InteropServices; using System.Windows.Media.Imaging; namespace System.Windows.Media.Imaging { #region GifBitmapEncoder ////// Built-in Encoder for Gif files. /// public sealed class GifBitmapEncoder : BitmapEncoder { #region Constructors ////// Constructor for GifBitmapEncoder /// ////// Critical - will eventuall create unmanaged resources /// PublicOK - all inputs are verified /// [SecurityCritical ] public GifBitmapEncoder() : base(true) { _supportsPreview = false; _supportsGlobalThumbnail = false; _supportsGlobalMetadata = false; _supportsFrameThumbnails = false; _supportsMultipleFrames = true; _supportsFrameMetadata = false; } #endregion #region Internal Properties / Methods ////// Returns the container format for this encoder /// ////// Critical - uses guid to create unmanaged resources /// internal override Guid ContainerFormat { [SecurityCritical] get { return _containerFormat; } } ////// Setups the encoder and other properties before encoding each frame /// [SecurityCritical] internal override void SetupFrame(SafeMILHandle frameEncodeHandle, SafeMILHandle encoderOptions) { HRESULT.Check(UnsafeNativeMethods.WICBitmapFrameEncode.Initialize( frameEncodeHandle, encoderOptions )); } #endregion #region Internal Abstract /// Need to implement this to derive from the "sealed" object internal override void SealObject() { throw new NotImplementedException(); } #endregion #region Data Members ////// Critical - CLSID used for creation of critical resources /// [SecurityCritical] private Guid _containerFormat = MILGuidData.GUID_ContainerFormatGif; #endregion } #endregion // GifBitmapEncoder } // 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
- Compiler.cs
- WebBrowserNavigatingEventHandler.cs
- NodeFunctions.cs
- StatusBarPanel.cs
- Rfc2898DeriveBytes.cs
- DataGridViewToolTip.cs
- PrincipalPermission.cs
- AssemblyCollection.cs
- ResourceExpressionEditorSheet.cs
- Span.cs
- KeysConverter.cs
- WebRequestModuleElement.cs
- Timeline.cs
- SafeMemoryMappedFileHandle.cs
- Size.cs
- ToolStripItemTextRenderEventArgs.cs
- OleDbRowUpdatedEvent.cs
- BinHexEncoder.cs
- FragmentNavigationEventArgs.cs
- SizeFConverter.cs
- DynamicValueConverter.cs
- ImageMapEventArgs.cs
- PipelineModuleStepContainer.cs
- IMembershipProvider.cs
- ConnectionStringsExpressionBuilder.cs
- TextParagraphCache.cs
- QueryStringConverter.cs
- BuildProviderCollection.cs
- SystemGatewayIPAddressInformation.cs
- PeerNameResolver.cs
- FixedSOMGroup.cs
- Condition.cs
- NavigateEvent.cs
- AdornerPresentationContext.cs
- ApplicationServiceHelper.cs
- ControlUtil.cs
- TimeSpanValidatorAttribute.cs
- LabelAutomationPeer.cs
- ComplusTypeValidator.cs
- SQLInt16Storage.cs
- TypeDependencyAttribute.cs
- TextPointer.cs
- webproxy.cs
- WebPartEditorApplyVerb.cs
- TableItemPattern.cs
- NamedObjectList.cs
- IConvertible.cs
- PassportAuthenticationEventArgs.cs
- ParentUndoUnit.cs
- TextFormatterHost.cs
- DataTableReaderListener.cs
- VersionedStream.cs
- ListViewDeletedEventArgs.cs
- ACL.cs
- ExtensibleClassFactory.cs
- EnumValidator.cs
- ParsedAttributeCollection.cs
- XmlSchemaAny.cs
- EncoderParameters.cs
- TraceLevelStore.cs
- DPCustomTypeDescriptor.cs
- CollectionBase.cs
- InteropAutomationProvider.cs
- PixelFormats.cs
- SAPIEngineTypes.cs
- AttributeData.cs
- EventWaitHandleSecurity.cs
- ImageClickEventArgs.cs
- ScalarType.cs
- ButtonChrome.cs
- CollectionChangedEventManager.cs
- SelectionService.cs
- LookupNode.cs
- SerialPort.cs
- ProtocolsConfigurationHandler.cs
- WindowsAuthenticationEventArgs.cs
- StringComparer.cs
- ConfigurationSection.cs
- DocumentReference.cs
- DrawingGroupDrawingContext.cs
- ConnectionManagementElement.cs
- StatusBar.cs
- DesignerSerializationOptionsAttribute.cs
- TileBrush.cs
- XmlCompatibilityReader.cs
- ServiceHost.cs
- TraceHandler.cs
- MatrixCamera.cs
- MetadataCollection.cs
- AutoResizedEvent.cs
- Configuration.cs
- VisualStyleTypesAndProperties.cs
- EventProviderWriter.cs
- ExpressionNode.cs
- DoubleConverter.cs
- EditorAttribute.cs
- DesignerHost.cs
- PKCS1MaskGenerationMethod.cs
- Int16Animation.cs
- AsymmetricKeyExchangeFormatter.cs