Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Media / Imaging / GifBitmapEncoder.cs / 1 / 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
- HttpWebResponse.cs
- DesignerOptionService.cs
- DecoratedNameAttribute.cs
- ElementUtil.cs
- ListSortDescriptionCollection.cs
- WorkflowOperationErrorHandler.cs
- DataFormats.cs
- JpegBitmapEncoder.cs
- ArgumentDesigner.xaml.cs
- BitmapPalette.cs
- CompilerScopeManager.cs
- SchemaCollectionPreprocessor.cs
- SymmetricAlgorithm.cs
- WindowsPrincipal.cs
- ChtmlTextWriter.cs
- DataSourceCacheDurationConverter.cs
- PeerPresenceInfo.cs
- AttachmentCollection.cs
- TagPrefixCollection.cs
- DataControlImageButton.cs
- DataGridViewBand.cs
- DbModificationCommandTree.cs
- XmlSchemaObjectTable.cs
- FullTextLine.cs
- WebRequest.cs
- WindowsAuthenticationModule.cs
- WindowsTokenRoleProvider.cs
- ThaiBuddhistCalendar.cs
- PickDesigner.xaml.cs
- HostingMessageProperty.cs
- AdCreatedEventArgs.cs
- ViewBox.cs
- namescope.cs
- TextReader.cs
- Internal.cs
- AssemblyAttributesGoHere.cs
- RepeaterItemCollection.cs
- ParseElement.cs
- ReferenceConverter.cs
- SoapElementAttribute.cs
- QilStrConcatenator.cs
- TextServicesDisplayAttribute.cs
- FontStretch.cs
- TdsValueSetter.cs
- ConfigurationStrings.cs
- CustomErrorCollection.cs
- ScriptManager.cs
- TemplateControlBuildProvider.cs
- CircleHotSpot.cs
- _SslSessionsCache.cs
- MethodAccessException.cs
- Application.cs
- diagnosticsswitches.cs
- AssemblyBuilderData.cs
- StylusLogic.cs
- Empty.cs
- SortQueryOperator.cs
- FileLogRecordEnumerator.cs
- ToolStripDesignerAvailabilityAttribute.cs
- OracleException.cs
- DateTime.cs
- EntityConnection.cs
- DynamicValidator.cs
- HtmlInputReset.cs
- ClipboardProcessor.cs
- TableAutomationPeer.cs
- LightweightCodeGenerator.cs
- _FtpControlStream.cs
- ListControl.cs
- DataGridColumn.cs
- ResourceKey.cs
- XmlStreamStore.cs
- RequestQueryParser.cs
- MenuScrollingVisibilityConverter.cs
- ServiceHostFactory.cs
- SafeSystemMetrics.cs
- SignatureResourcePool.cs
- PenThread.cs
- ErrorFormatter.cs
- RSAPKCS1SignatureDeformatter.cs
- CodeIdentifier.cs
- RequestCachingSection.cs
- TableLayoutSettingsTypeConverter.cs
- TransformerConfigurationWizardBase.cs
- LiteralTextParser.cs
- IsolationInterop.cs
- CategoryNameCollection.cs
- GiveFeedbackEventArgs.cs
- ClassHandlersStore.cs
- QilXmlReader.cs
- OleDbDataReader.cs
- ServiceNameElement.cs
- HttpProfileBase.cs
- Process.cs
- WindowsSpinner.cs
- BaseHashHelper.cs
- CodePageUtils.cs
- PropVariant.cs
- ToolStripDropDownClosedEventArgs.cs
- PartDesigner.cs