Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / InterOp / Imaging.cs / 1 / Imaging.cs
//------------------------------------------------------------------------------
// Microsoft Avalon
// Copyright (c) Microsoft Corporation, All Rights Reserved.
//
// File: Imaging.cs
//
//-----------------------------------------------------------------------------
using System;
using System.Security;
using System.Security.Permissions;
using MS.Internal;
using System.Diagnostics;
using System.Windows;
using System.Windows.Media.Imaging;
using Microsoft.Win32.SafeHandles;
using MS.Internal.PresentationCore; // SecurityHelper
using System.Windows.Interop;
namespace System.Windows.Interop
{
///
/// Managed/Unmanaged Interop for Imaging.
///
public static class Imaging
{
///
/// Construct an Bitmap from a HBITMAP.
///
///
///
///
///
///
/// Callers must have UnmanagedCode permission to call this API.
///
///
/// Critical - calls critical code, access unmanaged resources
/// PublicOK - demands unmanaged code permission
///
[SecurityCritical]
unsafe public static BitmapSource CreateBitmapSourceFromHBitmap(
IntPtr bitmap,
IntPtr palette,
Int32Rect sourceRect,
BitmapSizeOptions sizeOptions)
{
SecurityHelper.DemandUnmanagedCode();
// CR: dwaynen (1681459)
return CriticalCreateBitmapSourceFromHBitmap(bitmap, palette, sourceRect, sizeOptions, WICBitmapAlphaChannelOption.WICBitmapUseAlpha);
}
///
/// Construct an Bitmap from a HBITMAP.
///
///
///
///
///
///
///
/// Critical - calls critical code, access unmanaged resources
///
[SecurityCritical]
unsafe internal static BitmapSource CriticalCreateBitmapSourceFromHBitmap(
IntPtr bitmap,
IntPtr palette,
Int32Rect sourceRect,
BitmapSizeOptions sizeOptions,
WICBitmapAlphaChannelOption alphaOptions)
{
if (bitmap == IntPtr.Zero)
{
throw new ArgumentNullException("bitmap");
}
return new InteropBitmap(bitmap, palette, sourceRect, sizeOptions, alphaOptions); // use the critical version
}
///
/// Construct an Bitmap from a HICON.
///
///
///
///
///
/// Callers must have UnmanagedCode permission to call this API.
///
///
/// Critical - calls critical code, access unmanaged resources
/// PublicOK - demands unmanaged code permission
///
[SecurityCritical ]
unsafe public static BitmapSource CreateBitmapSourceFromHIcon(
IntPtr icon,
Int32Rect sourceRect,
BitmapSizeOptions sizeOptions)
{
SecurityHelper.DemandUnmanagedCode();
if (icon == IntPtr.Zero)
{
throw new ArgumentNullException("icon");
}
return new InteropBitmap(icon, sourceRect, sizeOptions);
}
///
/// Construct an Bitmap from a section handle.
///
///
///
///
///
///
///
///
/// Callers must have UnmanagedCode permission to call this API.
///
///
/// Critical - calls critical code, access unmanaged resources
/// PublicOK - demands unmanaged code permission
///
[SecurityCritical ]
unsafe public static BitmapSource CreateBitmapSourceFromMemorySection(
IntPtr section,
int pixelWidth,
int pixelHeight,
Media.PixelFormat format,
int stride,
int offset)
{
SecurityHelper.DemandUnmanagedCode();
if (section == IntPtr.Zero)
{
throw new ArgumentNullException("section");
}
return new InteropBitmap(section, pixelWidth, pixelHeight, format, stride, offset);
}
}
}
// 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: Imaging.cs
//
//-----------------------------------------------------------------------------
using System;
using System.Security;
using System.Security.Permissions;
using MS.Internal;
using System.Diagnostics;
using System.Windows;
using System.Windows.Media.Imaging;
using Microsoft.Win32.SafeHandles;
using MS.Internal.PresentationCore; // SecurityHelper
using System.Windows.Interop;
namespace System.Windows.Interop
{
///
/// Managed/Unmanaged Interop for Imaging.
///
public static class Imaging
{
///
/// Construct an Bitmap from a HBITMAP.
///
///
///
///
///
///
/// Callers must have UnmanagedCode permission to call this API.
///
///
/// Critical - calls critical code, access unmanaged resources
/// PublicOK - demands unmanaged code permission
///
[SecurityCritical]
unsafe public static BitmapSource CreateBitmapSourceFromHBitmap(
IntPtr bitmap,
IntPtr palette,
Int32Rect sourceRect,
BitmapSizeOptions sizeOptions)
{
SecurityHelper.DemandUnmanagedCode();
// CR: dwaynen (1681459)
return CriticalCreateBitmapSourceFromHBitmap(bitmap, palette, sourceRect, sizeOptions, WICBitmapAlphaChannelOption.WICBitmapUseAlpha);
}
///
/// Construct an Bitmap from a HBITMAP.
///
///
///
///
///
///
///
/// Critical - calls critical code, access unmanaged resources
///
[SecurityCritical]
unsafe internal static BitmapSource CriticalCreateBitmapSourceFromHBitmap(
IntPtr bitmap,
IntPtr palette,
Int32Rect sourceRect,
BitmapSizeOptions sizeOptions,
WICBitmapAlphaChannelOption alphaOptions)
{
if (bitmap == IntPtr.Zero)
{
throw new ArgumentNullException("bitmap");
}
return new InteropBitmap(bitmap, palette, sourceRect, sizeOptions, alphaOptions); // use the critical version
}
///
/// Construct an Bitmap from a HICON.
///
///
///
///
///
/// Callers must have UnmanagedCode permission to call this API.
///
///
/// Critical - calls critical code, access unmanaged resources
/// PublicOK - demands unmanaged code permission
///
[SecurityCritical ]
unsafe public static BitmapSource CreateBitmapSourceFromHIcon(
IntPtr icon,
Int32Rect sourceRect,
BitmapSizeOptions sizeOptions)
{
SecurityHelper.DemandUnmanagedCode();
if (icon == IntPtr.Zero)
{
throw new ArgumentNullException("icon");
}
return new InteropBitmap(icon, sourceRect, sizeOptions);
}
///
/// Construct an Bitmap from a section handle.
///
///
///
///
///
///
///
///
/// Callers must have UnmanagedCode permission to call this API.
///
///
/// Critical - calls critical code, access unmanaged resources
/// PublicOK - demands unmanaged code permission
///
[SecurityCritical ]
unsafe public static BitmapSource CreateBitmapSourceFromMemorySection(
IntPtr section,
int pixelWidth,
int pixelHeight,
Media.PixelFormat format,
int stride,
int offset)
{
SecurityHelper.DemandUnmanagedCode();
if (section == IntPtr.Zero)
{
throw new ArgumentNullException("section");
}
return new InteropBitmap(section, pixelWidth, pixelHeight, format, stride, offset);
}
}
}
// 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
- DataGridViewUtilities.cs
- TableHeaderCell.cs
- SystemKeyConverter.cs
- ManagementEventWatcher.cs
- ProfileService.cs
- login.cs
- CryptoApi.cs
- ExecutionContext.cs
- SourceFileBuildProvider.cs
- AcceptorSessionSymmetricTransportSecurityProtocol.cs
- BmpBitmapDecoder.cs
- ColorMap.cs
- CellParagraph.cs
- XamlTypeMapper.cs
- Delay.cs
- ISAPIApplicationHost.cs
- ComNativeDescriptor.cs
- SchemaSetCompiler.cs
- XmlLoader.cs
- FrameSecurityDescriptor.cs
- DynamicILGenerator.cs
- TreeNodeBindingDepthConverter.cs
- CodeParameterDeclarationExpression.cs
- AvtEvent.cs
- SystemGatewayIPAddressInformation.cs
- Int16Storage.cs
- XmlSerializerVersionAttribute.cs
- OdbcHandle.cs
- ConfigurationManagerHelper.cs
- SpecialFolderEnumConverter.cs
- Utils.cs
- TagMapInfo.cs
- DelayedRegex.cs
- RedirectionProxy.cs
- TypedAsyncResult.cs
- embossbitmapeffect.cs
- TypeHelpers.cs
- RetrieveVirtualItemEventArgs.cs
- XsdBuilder.cs
- Calendar.cs
- Parameter.cs
- DocumentPageTextView.cs
- JsonQNameDataContract.cs
- MouseButton.cs
- Transform3DGroup.cs
- DragStartedEventArgs.cs
- EntityDataSourceUtil.cs
- LocatorPart.cs
- WinEventTracker.cs
- WpfKnownTypeInvoker.cs
- AssemblyCollection.cs
- SafeSecurityHelper.cs
- DataGridItemCollection.cs
- ProcessHostFactoryHelper.cs
- GestureRecognizer.cs
- WinFormsComponentEditor.cs
- ItemCollection.cs
- CipherData.cs
- COM2IDispatchConverter.cs
- RowVisual.cs
- RuntimeEnvironment.cs
- ProtocolsSection.cs
- DbProviderFactories.cs
- HebrewNumber.cs
- HierarchicalDataSourceConverter.cs
- RequestCachePolicyConverter.cs
- FilterableAttribute.cs
- SystemIPGlobalProperties.cs
- WizardSideBarListControlItemEventArgs.cs
- AudioDeviceOut.cs
- MenuItemCollection.cs
- ComponentDispatcher.cs
- Model3D.cs
- RSACryptoServiceProvider.cs
- SynchronizationValidator.cs
- EntityParameterCollection.cs
- ITextView.cs
- HtmlHistory.cs
- CodeThrowExceptionStatement.cs
- GenericParameterDataContract.cs
- VerificationException.cs
- IsolatedStorageFileStream.cs
- ExtensionCollection.cs
- ToolStripDropTargetManager.cs
- GifBitmapDecoder.cs
- StateBag.cs
- TextSpan.cs
- ColorInterpolationModeValidation.cs
- CompoundFileDeflateTransform.cs
- ParentQuery.cs
- WizardForm.cs
- HtmlInputHidden.cs
- CellConstantDomain.cs
- InstanceDescriptor.cs
- GridViewHeaderRowPresenter.cs
- InputLanguageProfileNotifySink.cs
- Errors.cs
- ImageCreator.cs
- GenericWebPart.cs
- GPRECT.cs