Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CommonUI / System / Drawing / Advanced / ImageCodecInfo.cs / 1 / ImageCodecInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /*************************************************************************\ * * Copyright (c) 1998-1999, Microsoft Corp. All Rights Reserved. * * Module Name: * * ImageCodecInfo.cs * * Abstract: * * Native GDI+ ImageCodecInfo structure. * * Revision History: * * 9/22/1999 [....] * Created it. * \**************************************************************************/ namespace System.Drawing.Imaging { using System.Text; using System.Runtime.InteropServices; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System; using System.Drawing; using System.Drawing.Internal; // sdkinc\imaging.h ////// /// public sealed class ImageCodecInfo { Guid clsid; Guid formatID; string codecName; string dllName; string formatDescription; string filenameExtension; string mimeType; ImageCodecFlags flags; int version; byte[][] signaturePatterns; byte[][] signatureMasks; internal ImageCodecInfo() { } ///[To be supplied.] ////// /// public Guid Clsid { get { return clsid; } set { clsid = value; } } ///[To be supplied.] ////// /// public Guid FormatID { get { return formatID; } set { formatID = value; } } ///[To be supplied.] ////// /// public string CodecName { get { return codecName; } set { codecName = value; } } ///[To be supplied.] ////// /// public string DllName { [SuppressMessage("Microsoft.Security", "CA2103:ReviewImperativeSecurity")] get { if (dllName != null) { //a valid path is a security concern, demand //path discovery permission.... new System.Security.Permissions.FileIOPermission(System.Security.Permissions.FileIOPermissionAccess.PathDiscovery, dllName).Demand(); } return dllName; } [SuppressMessage("Microsoft.Security", "CA2103:ReviewImperativeSecurity")] set { if (value != null) { //a valid path is a security concern, demand //path discovery permission.... new System.Security.Permissions.FileIOPermission(System.Security.Permissions.FileIOPermissionAccess.PathDiscovery, value).Demand(); } dllName = value; } } ///[To be supplied.] ////// /// public string FormatDescription { get { return formatDescription; } set { formatDescription = value; } } ///[To be supplied.] ////// /// public string FilenameExtension { get { return filenameExtension; } set { filenameExtension = value; } } ///[To be supplied.] ////// /// public string MimeType { get { return mimeType; } set { mimeType = value; } } ///[To be supplied.] ////// /// public ImageCodecFlags Flags { get { return flags; } set { flags = value; } } ///[To be supplied.] ////// /// public int Version { get { return version; } set { version = value; } } ///[To be supplied.] ////// /// [CLSCompliant(false)] public byte[][] SignaturePatterns { get { return signaturePatterns; } set { signaturePatterns = value; } } ///[To be supplied.] ////// /// [CLSCompliant(false)] public byte[][] SignatureMasks { get { return signatureMasks; } set { signatureMasks = value; } } // Encoder/Decoder selection APIs ///[To be supplied.] ////// /// public static ImageCodecInfo[] GetImageDecoders() { ImageCodecInfo[] imageCodecs; int numDecoders; int size; int status = SafeNativeMethods.Gdip.GdipGetImageDecodersSize(out numDecoders, out size); if (status != SafeNativeMethods.Gdip.Ok) { throw SafeNativeMethods.Gdip.StatusException(status); } IntPtr memory = Marshal.AllocHGlobal(size); try { status = SafeNativeMethods.Gdip.GdipGetImageDecoders(numDecoders, size, memory); if (status != SafeNativeMethods.Gdip.Ok) { throw SafeNativeMethods.Gdip.StatusException(status); } imageCodecs = ImageCodecInfo.ConvertFromMemory(memory, numDecoders); } finally { Marshal.FreeHGlobal(memory); } return imageCodecs; } ///[To be supplied.] ////// /// public static ImageCodecInfo[] GetImageEncoders() { ImageCodecInfo[] imageCodecs; int numEncoders; int size; int status = SafeNativeMethods.Gdip.GdipGetImageEncodersSize(out numEncoders, out size); if (status != SafeNativeMethods.Gdip.Ok) { throw SafeNativeMethods.Gdip.StatusException(status); } IntPtr memory = Marshal.AllocHGlobal(size); try { status = SafeNativeMethods.Gdip.GdipGetImageEncoders(numEncoders, size, memory); if (status != SafeNativeMethods.Gdip.Ok) { throw SafeNativeMethods.Gdip.StatusException(status); } imageCodecs = ImageCodecInfo.ConvertFromMemory(memory, numEncoders); } finally { Marshal.FreeHGlobal(memory); } return imageCodecs; } /* FxCop rule 'AvoidBuildingNonCallableCode' - Left here in case it is needed in the future. internal static ImageCodecInfoPrivate ConvertToMemory(ImageCodecInfo imagecs) { ImageCodecInfoPrivate imagecsp = new ImageCodecInfoPrivate(); imagecsp.Clsid = imagecs.Clsid; imagecsp.FormatID = imagecs.FormatID; imagecsp.CodecName = Marshal.StringToHGlobalUni(imagecs.CodecName); imagecsp.DllName = Marshal.StringToHGlobalUni(imagecs.DllName); imagecsp.FormatDescription = Marshal.StringToHGlobalUni(imagecs.FormatDescription); imagecsp.FilenameExtension = Marshal.StringToHGlobalUni(imagecs.FilenameExtension); imagecsp.MimeType = Marshal.StringToHGlobalUni(imagecs.MimeType); imagecsp.Flags = (int)imagecs.Flags; imagecsp.Version = (int)imagecs.Version; imagecsp.SigCount = imagecs.SignaturePatterns.Length; imagecsp.SigSize = imagecs.SignaturePatterns[0].Length; imagecsp.SigPattern = Marshal.AllocHGlobal(imagecsp.SigCount*imagecsp.SigSize); imagecsp.SigMask = Marshal.AllocHGlobal(imagecsp.SigCount*imagecsp.SigSize); for (int i=0; i[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- IResourceProvider.cs
- StrongName.cs
- Margins.cs
- CultureInfo.cs
- ValidatingPropertiesEventArgs.cs
- TemplatePartAttribute.cs
- UserControlParser.cs
- TypeSystem.cs
- PersonalizationProviderCollection.cs
- TreeSet.cs
- CatalogPartChrome.cs
- FixedDSBuilder.cs
- UserPreferenceChangingEventArgs.cs
- DataSourceView.cs
- ToolStripDesigner.cs
- KeyTime.cs
- FontFaceLayoutInfo.cs
- SqlXmlStorage.cs
- LinkedResourceCollection.cs
- HttpHandlerActionCollection.cs
- FloaterBaseParagraph.cs
- HostedHttpRequestAsyncResult.cs
- EditorPartChrome.cs
- SchemaDeclBase.cs
- HttpRequestCacheValidator.cs
- HttpResponse.cs
- PackageDigitalSignatureManager.cs
- ValidationHelpers.cs
- PeerObject.cs
- SqlCommandSet.cs
- ProxyGenerator.cs
- XmlSubtreeReader.cs
- SafeProcessHandle.cs
- InvalidDataException.cs
- SpecialNameAttribute.cs
- EllipseGeometry.cs
- ProtectedProviderSettings.cs
- DPCustomTypeDescriptor.cs
- GridViewRowCollection.cs
- RequestCacheEntry.cs
- BamlRecords.cs
- MultipleViewProviderWrapper.cs
- DockPanel.cs
- unsafenativemethodstextservices.cs
- EFTableProvider.cs
- MatchingStyle.cs
- IisTraceListener.cs
- DataMemberFieldEditor.cs
- ListViewUpdatedEventArgs.cs
- TextSegment.cs
- WasEndpointConfigContainer.cs
- Viewport2DVisual3D.cs
- SQLInt64.cs
- XmlAttributes.cs
- ResourceAssociationType.cs
- SByte.cs
- PinnedBufferMemoryStream.cs
- EditorAttributeInfo.cs
- SByteConverter.cs
- SHA256Managed.cs
- adornercollection.cs
- DataServiceOperationContext.cs
- XPathNodeHelper.cs
- ContentFilePart.cs
- CannotUnloadAppDomainException.cs
- TextProperties.cs
- EpmContentDeSerializer.cs
- MatrixAnimationUsingPath.cs
- DrawingVisual.cs
- TPLETWProvider.cs
- CapabilitiesUse.cs
- SystemFonts.cs
- TempEnvironment.cs
- ApplicationServicesHostFactory.cs
- MembershipAdapter.cs
- PolyLineSegment.cs
- FunctionCommandText.cs
- TypeValidationEventArgs.cs
- SqlClientWrapperSmiStreamChars.cs
- SqlDataSourceEnumerator.cs
- CacheModeValueSerializer.cs
- XhtmlBasicControlAdapter.cs
- HandleCollector.cs
- XamlSerializerUtil.cs
- StringInfo.cs
- OracleString.cs
- OLEDB_Util.cs
- Semaphore.cs
- ToolStripSeparatorRenderEventArgs.cs
- EncryptedPackageFilter.cs
- XmlSchemaSearchPattern.cs
- UnconditionalPolicy.cs
- SchemaImporterExtensionElementCollection.cs
- TableLayoutPanel.cs
- SymmetricKey.cs
- EditorBrowsableAttribute.cs
- CornerRadius.cs
- XmlCDATASection.cs
- ServerValidateEventArgs.cs
- DataBoundControl.cs