Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Imaging / PngBitmapEncoder.cs / 1 / PngBitmapEncoder.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, All Rights Reserved // // File: PngBitmapEncoder.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; namespace System.Windows.Media.Imaging { #region PngInterlaceOption ////// Possibile options for the interlaced setting. /// public enum PngInterlaceOption : int { ////// Let the encoder decide what is best. /// Default = 0, ////// Save as an interlaced bitmap. /// On = 1, ////// Do not save as an interlaced bitmap. /// Off = 2, } #endregion #region PngBitmapEncoder ////// Built-in Encoder for Png files. /// public sealed class PngBitmapEncoder : BitmapEncoder { #region Constructors ////// Constructor for PngBitmapEncoder /// ////// Critical - will eventually create unmanaged resources /// PublicOK - all inputs are verified /// [SecurityCritical ] public PngBitmapEncoder() : base(true) { _supportsPreview = false; _supportsGlobalThumbnail = false; _supportsGlobalMetadata = false; _supportsFrameThumbnails = false; _supportsMultipleFrames = false; _supportsFrameMetadata = true; } #endregion #region Public Properties ////// Encode this bitmap as interlaced. /// public PngInterlaceOption Interlace { get { return _interlaceOption; } set { _interlaceOption = value; } } #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 /// ////// Critical - calls Critical Initialize() /// [SecurityCritical] internal override void SetupFrame(SafeMILHandle frameEncodeHandle, SafeMILHandle encoderOptions) { PROPBAG2 propBag = new PROPBAG2(); PROPVARIANT propValue = new PROPVARIANT(); // There is only one encoder option supported here: if (_interlaceOption != c_defaultInterlaceOption) { try { propBag.Init("InterlaceOption"); propValue.Init(_interlaceOption == PngInterlaceOption.On); HRESULT.Check(UnsafeNativeMethods.IPropertyBag2.Write( encoderOptions, 1, ref propBag, ref propValue)); } finally { propBag.Clear(); propValue.Clear(); } } 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_ContainerFormatPng; private const PngInterlaceOption c_defaultInterlaceOption = PngInterlaceOption.Default; private PngInterlaceOption _interlaceOption = c_defaultInterlaceOption; #endregion } #endregion // PngBitmapEncoder } // 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
- TaiwanCalendar.cs
- ClientSettingsSection.cs
- IdentityNotMappedException.cs
- QualifiedCellIdBoolean.cs
- DataGrid.cs
- MultiTrigger.cs
- PerfService.cs
- OpacityConverter.cs
- HostingPreferredMapPath.cs
- EntityDataSourceStatementEditor.cs
- WebProxyScriptElement.cs
- DataStreamFromComStream.cs
- UserNamePasswordValidationMode.cs
- CompressStream.cs
- DependencyObject.cs
- RNGCryptoServiceProvider.cs
- RightsManagementEncryptedStream.cs
- InvokeGenerator.cs
- SHA384.cs
- Executor.cs
- AuthenticatedStream.cs
- TextSerializer.cs
- UrlMappingCollection.cs
- SpecularMaterial.cs
- WebPartExportVerb.cs
- XsltLibrary.cs
- CompareValidator.cs
- ParserExtension.cs
- Constants.cs
- TextFormatterContext.cs
- _PooledStream.cs
- XmlArrayItemAttributes.cs
- COM2TypeInfoProcessor.cs
- StreamGeometryContext.cs
- InvariantComparer.cs
- XmlSchemas.cs
- SqlGatherProducedAliases.cs
- BypassElement.cs
- ImageListStreamer.cs
- ByteStorage.cs
- MinMaxParagraphWidth.cs
- SystemMulticastIPAddressInformation.cs
- WebEventTraceProvider.cs
- RequiredAttributeAttribute.cs
- PropertyChangingEventArgs.cs
- ConstructorExpr.cs
- TextFindEngine.cs
- IPEndPoint.cs
- HtmlButton.cs
- ServiceProviders.cs
- OledbConnectionStringbuilder.cs
- OdbcEnvironmentHandle.cs
- EdmScalarPropertyAttribute.cs
- TextBreakpoint.cs
- Component.cs
- InstanceCreationEditor.cs
- ItemChangedEventArgs.cs
- SmiEventStream.cs
- Translator.cs
- _MultipleConnectAsync.cs
- Currency.cs
- FixedTextView.cs
- ValuePatternIdentifiers.cs
- BufferedWebEventProvider.cs
- _DomainName.cs
- XmlWellformedWriterHelpers.cs
- WebOperationContext.cs
- GAC.cs
- RepeatButton.cs
- DeviceFilterEditorDialog.cs
- PixelFormats.cs
- ResourceLoader.cs
- UpdateTracker.cs
- ImportContext.cs
- TextEditorCopyPaste.cs
- PinnedBufferMemoryStream.cs
- FilterQuery.cs
- XmlDataImplementation.cs
- BufferedReadStream.cs
- Simplifier.cs
- WindowsNonControl.cs
- WebServiceTypeData.cs
- HTTP_SERVICE_CONFIG_URLACL_PARAM.cs
- UnSafeCharBuffer.cs
- CollectionChangeEventArgs.cs
- SqlNodeTypeOperators.cs
- SqlWriter.cs
- CoTaskMemUnicodeSafeHandle.cs
- XmlAutoDetectWriter.cs
- MexNamedPipeBindingCollectionElement.cs
- MetadataPropertyCollection.cs
- InsufficientMemoryException.cs
- CounterSetInstance.cs
- Event.cs
- DecoderNLS.cs
- UniqueEventHelper.cs
- WebContext.cs
- JsonFormatGeneratorStatics.cs
- ModifierKeysConverter.cs
- SafeThemeHandle.cs