This commit is contained in:
Sakari Hyoty 2013-10-11 13:51:46 +03:00
Родитель a99e34d217
Коммит b7dfa4c565
115 изменённых файлов: 158 добавлений и 9900 удалений

6
.nuget/NuGet.Config Normal file
Просмотреть файл

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
</configuration>

Двоичные данные
.nuget/NuGet.exe Normal file

Двоичный файл не отображается.

136
.nuget/NuGet.targets Normal file
Просмотреть файл

@ -0,0 +1,136 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">$(MSBuildProjectDirectory)\..\</SolutionDir>
<!-- Enable the restore command to run before builds -->
<RestorePackages Condition=" '$(RestorePackages)' == '' ">false</RestorePackages>
<!-- Property that enables building a package from a project -->
<BuildPackage Condition=" '$(BuildPackage)' == '' ">false</BuildPackage>
<!-- Determines if package restore consent is required to restore packages -->
<RequireRestoreConsent Condition=" '$(RequireRestoreConsent)' != 'false' ">true</RequireRestoreConsent>
<!-- Download NuGet.exe if it does not already exist -->
<DownloadNuGetExe Condition=" '$(DownloadNuGetExe)' == '' ">false</DownloadNuGetExe>
</PropertyGroup>
<ItemGroup Condition=" '$(PackageSources)' == '' ">
<!-- Package sources used to restore packages. By default, registered sources under %APPDATA%\NuGet\NuGet.Config will be used -->
<!-- The official NuGet package source (https://www.nuget.org/api/v2/) will be excluded if package sources are specified and it does not appear in the list -->
<!--
<PackageSource Include="https://www.nuget.org/api/v2/" />
<PackageSource Include="https://my-nuget-source/nuget/" />
-->
</ItemGroup>
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT'">
<!-- Windows specific commands -->
<NuGetToolsPath>$([System.IO.Path]::Combine($(SolutionDir), ".nuget"))</NuGetToolsPath>
<PackagesConfig>$([System.IO.Path]::Combine($(ProjectDir), "packages.config"))</PackagesConfig>
</PropertyGroup>
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT'">
<!-- We need to launch nuget.exe with the mono command if we're not on windows -->
<NuGetToolsPath>$(SolutionDir).nuget</NuGetToolsPath>
<PackagesConfig>packages.config</PackagesConfig>
</PropertyGroup>
<PropertyGroup>
<!-- NuGet command -->
<NuGetExePath Condition=" '$(NuGetExePath)' == '' ">$(NuGetToolsPath)\NuGet.exe</NuGetExePath>
<PackageSources Condition=" $(PackageSources) == '' ">@(PackageSource)</PackageSources>
<NuGetCommand Condition=" '$(OS)' == 'Windows_NT'">"$(NuGetExePath)"</NuGetCommand>
<NuGetCommand Condition=" '$(OS)' != 'Windows_NT' ">mono --runtime=v4.0.30319 $(NuGetExePath)</NuGetCommand>
<PackageOutputDir Condition="$(PackageOutputDir) == ''">$(TargetDir.Trim('\\'))</PackageOutputDir>
<RequireConsentSwitch Condition=" $(RequireRestoreConsent) == 'true' ">-RequireConsent</RequireConsentSwitch>
<NonInteractiveSwitch Condition=" '$(VisualStudioVersion)' != '' AND '$(OS)' == 'Windows_NT' ">-NonInteractive</NonInteractiveSwitch>
<PaddedSolutionDir Condition=" '$(OS)' == 'Windows_NT'">"$(SolutionDir) "</PaddedSolutionDir>
<PaddedSolutionDir Condition=" '$(OS)' != 'Windows_NT' ">"$(SolutionDir)"</PaddedSolutionDir>
<!-- Commands -->
<RestoreCommand>$(NuGetCommand) install "$(PackagesConfig)" -source "$(PackageSources)" $(NonInteractiveSwitch) $(RequireConsentSwitch) -solutionDir $(PaddedSolutionDir)</RestoreCommand>
<BuildCommand>$(NuGetCommand) pack "$(ProjectPath)" -Properties "Configuration=$(Configuration);Platform=$(Platform)" $(NonInteractiveSwitch) -OutputDirectory "$(PackageOutputDir)" -symbols</BuildCommand>
<!-- We need to ensure packages are restored prior to assembly resolve -->
<BuildDependsOn Condition="$(RestorePackages) == 'true'">
RestorePackages;
$(BuildDependsOn);
</BuildDependsOn>
<!-- Make the build depend on restore packages -->
<BuildDependsOn Condition="$(BuildPackage) == 'true'">
$(BuildDependsOn);
BuildPackage;
</BuildDependsOn>
</PropertyGroup>
<Target Name="CheckPrerequisites">
<!-- Raise an error if we're unable to locate nuget.exe -->
<Error Condition="'$(DownloadNuGetExe)' != 'true' AND !Exists('$(NuGetExePath)')" Text="Unable to locate '$(NuGetExePath)'" />
<!--
Take advantage of MsBuild's build dependency tracking to make sure that we only ever download nuget.exe once.
This effectively acts as a lock that makes sure that the download operation will only happen once and all
parallel builds will have to wait for it to complete.
-->
<MsBuild Targets="_DownloadNuGet" Projects="$(MSBuildThisFileFullPath)" Properties="Configuration=NOT_IMPORTANT;DownloadNuGetExe=$(DownloadNuGetExe)" />
</Target>
<Target Name="_DownloadNuGet">
<DownloadNuGet OutputFilename="$(NuGetExePath)" Condition=" '$(DownloadNuGetExe)' == 'true' AND !Exists('$(NuGetExePath)')" />
</Target>
<Target Name="RestorePackages" DependsOnTargets="CheckPrerequisites">
<Exec Command="$(RestoreCommand)"
Condition="'$(OS)' != 'Windows_NT' And Exists('$(PackagesConfig)')" />
<Exec Command="$(RestoreCommand)"
LogStandardErrorAsError="true"
Condition="'$(OS)' == 'Windows_NT' And Exists('$(PackagesConfig)')" />
</Target>
<Target Name="BuildPackage" DependsOnTargets="CheckPrerequisites">
<Exec Command="$(BuildCommand)"
Condition=" '$(OS)' != 'Windows_NT' " />
<Exec Command="$(BuildCommand)"
LogStandardErrorAsError="true"
Condition=" '$(OS)' == 'Windows_NT' " />
</Target>
<UsingTask TaskName="DownloadNuGet" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">
<ParameterGroup>
<OutputFilename ParameterType="System.String" Required="true" />
</ParameterGroup>
<Task>
<Reference Include="System.Core" />
<Using Namespace="System" />
<Using Namespace="System.IO" />
<Using Namespace="System.Net" />
<Using Namespace="Microsoft.Build.Framework" />
<Using Namespace="Microsoft.Build.Utilities" />
<Code Type="Fragment" Language="cs">
<![CDATA[
try {
OutputFilename = Path.GetFullPath(OutputFilename);
Log.LogMessage("Downloading latest version of NuGet.exe...");
WebClient webClient = new WebClient();
webClient.DownloadFile("https://www.nuget.org/nuget.exe", OutputFilename);
return true;
}
catch (Exception ex) {
Log.LogErrorFromException(ex);
return false;
}
]]>
</Code>
</Task>
</UsingTask>
</Project>

Просмотреть файл

@ -1,8 +1,15 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
# Visual Studio Express 2012 for Windows Phone
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MagnifierApp", "MagnifierApp\MagnifierApp.csproj", "{082EC7B4-5761-4EA5-840C-A11E417F0553}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{F4E32663-B4B0-4194-AFB3-78F9B4470B64}"
ProjectSection(SolutionItems) = preProject
.nuget\NuGet.Config = .nuget\NuGet.Config
.nuget\NuGet.exe = .nuget\NuGet.exe
.nuget\NuGet.targets = .nuget\NuGet.targets
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM = Debug|ARM

Просмотреть файл

@ -25,6 +25,8 @@
<ValidateXaml>true</ValidateXaml>
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
<ThrowErrorsInValidation>true</ThrowErrorsInValidation>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
@ -184,8 +186,9 @@
<Reference Include="Microsoft.Phone.Controls.Toolkit">
<HintPath>..\packages\WPToolkit.4.2013.06.11\lib\wp8\Microsoft.Phone.Controls.Toolkit.dll</HintPath>
</Reference>
<Reference Include="Nokia.Graphics.Imaging.Managed">
<HintPath>..\packages\NokiaImagingSDK.0.10.0\lib\wp8\Nokia.Graphics.Imaging.Managed.dll</HintPath>
<Reference Include="Nokia.Graphics.Imaging.Managed, Version=1.0.145.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\NokiaImagingSDK.1.0.145.0\lib\wp8\Nokia.Graphics.Imaging.Managed.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
@ -205,5 +208,6 @@
</Target>
-->
<ProjectExtensions />
<Import Project="..\packages\NokiaImagingSDK.0.10.0\build\wp8\NokiaImagingSDK.targets" Condition="Exists('..\packages\NokiaImagingSDK.0.10.0\build\wp8\NokiaImagingSDK.targets')" />
<Import Project="..\packages\NokiaImagingSDK.1.0.145.0\build\wp8\NokiaImagingSDK.targets" Condition="Exists('..\packages\NokiaImagingSDK.1.0.145.0\build\wp8\NokiaImagingSDK.targets')" />
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
</Project>

Просмотреть файл

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="ExifLib" version="1.4.5.0" targetFramework="wp80" />
<package id="NokiaImagingSDK" version="0.10.0" targetFramework="wp80" />
<package id="NokiaImagingSDK" version="1.0.145.0" targetFramework="wp80" />
<package id="WPToolkit" version="4.2013.06.11" targetFramework="wp80" />
</packages>

Двоичные данные
packages/ExifLib.1.4.5.0/ExifLib.1.4.5.0.nupkg поставляемый

Двоичный файл не отображается.

Просмотреть файл

@ -1,17 +0,0 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>ExifLib</id>
<version>1.4.5.0</version>
<title>ExifLib - A Fast Exif Data Extractor for .NET 2.0+</title>
<authors>Simon McKenzie</authors>
<owners>Simon McKenzie</owners>
<projectUrl>http://www.codeproject.com/KB/graphics/exiflib.aspx</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Reads JPEG Exif data without the heavyweight and unnecessary instantiation of GDI+ objects</description>
<releaseNotes>Fix for Windows Phone 8</releaseNotes>
<copyright>Licensed under the CPOL</copyright>
<language />
<tags>jpeg exif jpg</tags>
</metadata>
</package>

Двоичные данные
packages/ExifLib.1.4.5.0/NuGet.exe поставляемый

Двоичный файл не отображается.

Двоичные данные
packages/ExifLib.1.4.5.0/lib/net20/ExifLib.dll поставляемый

Двоичный файл не отображается.

Двоичные данные
packages/ExifLib.1.4.5.0/lib/net40/ExifLib.dll поставляемый

Двоичный файл не отображается.

Двоичные данные
packages/ExifLib.1.4.5.0/lib/sl3-wp/ExifLib.dll поставляемый

Двоичный файл не отображается.

Двоичные данные
packages/ExifLib.1.4.5.0/lib/sl3/ExifLib.dll поставляемый

Двоичный файл не отображается.

Двоичные данные
packages/ExifLib.1.4.5.0/lib/sl4/ExifLib.dll поставляемый

Двоичный файл не отображается.

Двоичные данные
packages/ExifLib.1.4.5.0/lib/sl5/ExifLib.dll поставляемый

Двоичный файл не отображается.

Двоичные данные
packages/NokiaImagingSDK.0.10.0/NokiaImagingSDK.0.10.0.nupkg поставляемый

Двоичный файл не отображается.

Просмотреть файл

@ -1,19 +0,0 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>NokiaImagingSDK</id>
<version>0.10.0</version>
<title>Nokia Imaging SDK</title>
<authors>Nokia</authors>
<owners>Nokia</owners>
<licenseUrl>http://www.developer.nokia.com/General/Nokia_Imaging_SDK_License_Agreement.xhtml</licenseUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>The Nokia Imaging SDK, currently as early Beta version, makes some of the technologies that Nokia uses in its own imaging applications available to developers. It is a productive library for manipulating image data captured and stored by mobile devices in an efficient way. The features include decoding and encoding JPEG images, applying filters, cropping, rotating and resizing. The SDK provides more than 50 pre-made filters and effects that have been specifically developed for mobile imaging, with speed and memory performance as key drivers. The SDK is highly optimized to be super-fast by meticulous memory and code optimization. The patented JPEG technology, RAJPEG, contributes to making this possible, as it allows access to any image data without decoding the whole image. That means you can apply effects to high resolution images, without worrying about your memory budget.</description>
<summary>Nokia Imaging SDK has more than 50 filters that have been specifically developed for mobile imaging, with speed and memory performance as key drivers.</summary>
<copyright>Copyright (c) 2012-2013, Nokia. All rights reserved.</copyright>
<tags>Nokia Imaging NokiaImagingSDK WindowsPhone wp8</tags>
<references>
<reference file="Nokia.Graphics.Imaging.Managed.dll" />
</references>
</metadata>
</package>

Просмотреть файл

@ -1,15 +0,0 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="CheckAnyCPU" Condition="('$(Platform)' != 'x86') AND ('$(Platform)' != 'ARM')" BeforeTargets="BeforeBuild">
<Error Text="Nokia Imaging SDK does not support the $(Platform) target platform. Please consult http://developer.nokia.com/Resources/Library/Lumia/#!nokia-imaging-sdk/adding-libraries-to-the-project.html;#toc_InstallingtheSDKandincludingthelibrariestoaprojectusingNuGet " />
</Target>
<ItemGroup>
<Reference Include="Nokia.Graphics.Imaging">
<HintPath>$(MSBuildThisFileDirectory)\..\..\lib\wp8\$(Platform)\Nokia.Graphics.Imaging.winmd</HintPath>
</Reference>
<Reference Include="Nokia.InteropServices.WindowsRuntime">
<HintPath>$(MSBuildThisFileDirectory)\..\..\lib\wp8\$(Platform)\Nokia.InteropServices.WindowsRuntime.winmd</HintPath>
</Reference>
</ItemGroup>
</Project>

Двоичные данные
packages/NokiaImagingSDK.0.10.0/lib/wp8/ARM/Nokia.Graphics.Imaging.dll поставляемый

Двоичный файл не отображается.

Двоичные данные
packages/NokiaImagingSDK.0.10.0/lib/wp8/ARM/Nokia.Graphics.Imaging.winmd поставляемый

Двоичный файл не отображается.

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Двоичные данные
packages/NokiaImagingSDK.0.10.0/lib/wp8/ARM/Nokia.InteropServices.WindowsRuntime.dll поставляемый

Двоичный файл не отображается.

Двоичный файл не отображается.

Просмотреть файл

@ -1,35 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
"Nokia.InteropServices.WindowsRuntime.WinRT"
</assembly>
<members>
<member name="M:Nokia.InteropServices.WindowsRuntime.BufferFactory.CreateBuffer(Nokia.InteropServices.WindowsRuntime.ILockableMemory)">
<summary>Create an IBuffer from an ILockableMemory.</summary>
<param name="bufferPointer">A pointer to the data to wrap in an IBuffer.</param>
<returns>An IBuffer pointing to the same data as bufferPointer</returns>
</member>
<member name="T:Nokia.InteropServices.WindowsRuntime.BufferFactory">
<summary>Factory for creating an instance of IBuffer from an ILockableMemory.</summary>
</member>
<member name="P:Nokia.InteropServices.WindowsRuntime.ILockableMemory.Length">
<summary>The length of the buffer.</summary>
</member>
<member name="M:Nokia.InteropServices.WindowsRuntime.ILockableMemory.Unlock">
<summary>Unlock the buffer for pointer access, invalidating the previously returned raw pointer.</summary>
</member>
<member name="M:Nokia.InteropServices.WindowsRuntime.ILockableMemory.Lock">
<summary>Lock the buffer for pointer access.</summary>
<returns>Raw pointer as an int64.</returns>
</member>
<member name="T:Nokia.InteropServices.WindowsRuntime.ILockableMemory">
<summary>
A buffer represented by a pointer to a memory location and a length.
Implementations can be used to create IBuffer objects using a BufferFactory.
</summary>
</member>
<member name="T:Nokia.InteropServices.WindowsRuntime.LockableMemoryBufferByteAccess">
<summary>RAII wrapper for IBufferByteAccess, managing Lock()/Unlock() on an ILockableMemory instance.</summary>
</member>
</members>
</doc>

Двоичные данные
packages/NokiaImagingSDK.0.10.0/lib/wp8/Nokia.Graphics.Imaging.Managed.dll поставляемый

Двоичный файл не отображается.

Просмотреть файл

@ -1,337 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Nokia.Graphics.Imaging.Managed</name>
</assembly>
<members>
<member name="T:Nokia.Graphics.Imaging.CustomImageSourceBase">
<summary>
Managed base class for custom image sources.
</summary>
<remarks>
The only supported color format in this version is ColorFormat.Bgra8888, which means pixels are represented as <see cref="T:System.UInt32"/> values.
</remarks>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.#ctor(Windows.Foundation.Size)">
<summary>
CustomImageSourceBase constructor.
</summary>
<param name="size">Inherent size of the image.</param>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.Dispose(System.Boolean)">
<summary>
Dispose the object.
</summary>
<param name="disposing">True if this is a call to Dispose(), or false if called by the finalizer.</param>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.Dispose">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.OnLoadAsync">
<summary>
Called when the image source should load/prepare for rendering.
</summary>
<returns>
An async action representing the work.
</returns>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.OnProcess(Windows.Foundation.Rect,Windows.Foundation.Size,System.UInt32[])">
<summary>
Called when the image source is asked to generate a rectangular area of the image.
</summary>
<param name="rect">The rectangle within which it is valid to write to <paramref name="imagePixels"/>.</param>
<param name="imageSize">The overall width and height of the pixels array. This is equal to or larger than the size of <paramref name="rect"/>.</param>
<param name="imagePixels">The pixels array within which to write.</param>
<remarks>
The effect is only expected to write to the area in <see paramref="imagePixels"/> defined by <paramref name="rect"/>.
</remarks>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.FromColor(Windows.UI.Color)">
<summary>
Encode a <see cref="T:Windows.UI.Color"/> into an uint.
</summary>
<param name="color">The color to encode.</param>
<returns>An uint.</returns>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.PreloadAsync">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.GetInfoAsync">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.Lock(Nokia.Graphics.Imaging.RenderRequest)">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.GetBitmapAsync(Nokia.Graphics.Imaging.Bitmap,Nokia.Graphics.Imaging.OutputOption)">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.Nokia#Graphics#Imaging#ICustomImageSourceCallbacks#LoadAsync">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.Nokia#Graphics#Imaging#ICustomImageSourceCallbacks#ProvideBuffer(Windows.Foundation.Size)">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomImageSourceBase.Nokia#Graphics#Imaging#ICustomImageSourceCallbacks#Process(Windows.Foundation.Rect)">
<inheritdoc/>
</member>
<member name="P:Nokia.Graphics.Imaging.CustomImageSourceBase.Size">
<summary>
The inherent size of the image.
</summary>
</member>
<member name="T:Nokia.Graphics.Imaging.CustomEffectBase">
<summary>
Base class for custom user-defined effects.
</summary>
<remarks>
To create your own effect, subclass CustomEffectBase and provide your own implementation of OnProcess(Rect rect, Size imageSize, uint[] sourceImagePixels, uint[] targetImagePixels).
<para>The only supported color format in this version is ColorFormat.Bgra8888, which means pixels are represented as <see cref="T:System.UInt32"/> values.</para>
</remarks>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.#ctor(Nokia.Graphics.Imaging.IImageProvider,System.Boolean)">
<summary>
EffectBase constructor.
</summary>
<param name="source"><see cref="T:Nokia.Graphics.Imaging.IImageProvider"/> to use as source.</param>
<param name="isInplace">If true, the sourcePixels and targetPixels parameters to OnProcess will refer to the same array. This can be more efficient, but may restrict the effect (writing a pixel means the original source pixel is discarded). If false, different buffers are used. The default value is false.</param>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.Dispose(System.Boolean)">
<summary>
Dispose the object.
</summary>
<param name="disposing">True if this is a call to Dispose(), or false if called by the finalizer.</param>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.Dispose">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.OnProcess(Windows.Foundation.Rect,Windows.Foundation.Size,System.UInt32[],System.UInt32[])">
<summary>
Called when the effect is asked to process a rectangular area of the image.
</summary>
<param name="rect">The rectangle within which it is valid to read from <paramref name="sourceImagePixels"/> and write to <paramref name="targetImagePixels"/>.</param>
<param name="imageSize">The size of the overall image. This is equal to or larger than the size of <paramref name="rect"/>.</param>
<param name="sourceImagePixels">The source image pixels.</param>
<param name="targetImagePixels">The target image pixels.</param>
<remarks>
The effect is only expected to write to the area in <see paramref="targetImagePixels"/> defined by <paramref name="rect"/>.
In addition, <see paramref="sourceImagePixels"/> may not contain valid values outside the area defined by <paramref name="rect"/>.
</remarks>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.ToColor(System.UInt32)">
<summary>
Return a <see cref="T:Windows.UI.Color"/> from an uint.
</summary>
<param name="uintColor">The unsigned integer to convert.</param>
<returns>Returns a color instance.</returns>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.FromColor(Windows.UI.Color)">
<summary>
Encode a <see cref="T:Windows.UI.Color"/> into an uint.
</summary>
<param name="color">The color to encode.</param>
<returns>An uint.</returns>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.PreloadAsync">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.GetInfoAsync">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.Lock(Nokia.Graphics.Imaging.RenderRequest)">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.GetBitmapAsync(Nokia.Graphics.Imaging.Bitmap,Nokia.Graphics.Imaging.OutputOption)">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.Nokia#Graphics#Imaging#ICustomEffectCallbacks#ProvideSourceBuffer(Windows.Foundation.Size)">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.Nokia#Graphics#Imaging#ICustomEffectCallbacks#ProvideTargetBuffer(Windows.Foundation.Size)">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.CustomEffectBase.Nokia#Graphics#Imaging#ICustomEffectCallbacks#Process(Windows.Foundation.Rect)">
<inheritdoc/>
</member>
<member name="P:Nokia.Graphics.Imaging.CustomEffectBase.Source">
<inheritdoc/>
</member>
<member name="T:Nokia.Graphics.Imaging.ImageProviderExtensions">
<summary>
Extension methods for IImageProvider.
</summary>
</member>
<member name="M:Nokia.Graphics.Imaging.ImageProviderExtensions.Then``1(Nokia.Graphics.Imaging.IImageProvider,``0)">
<summary>
Enables a fluid way of chaining multiple IImageProviders and IImageConsumers.
</summary>
<param name="provider">The image provider.</param>
<param name="consumer">The image consumer.</param>
<typeparam name="TImageConsumer">The extended image consumer.</typeparam>
<returns>The consumer that was passed in.</returns>
</member>
<member name="M:Nokia.Graphics.Imaging.ImageProviderExtensions.GetBitmapAsync(Nokia.Graphics.Imaging.IImageProvider,System.Windows.Media.Imaging.WriteableBitmap,Nokia.Graphics.Imaging.OutputOption)">
<summary>
Create a WriteableBitmap with the contents of the image provider.
</summary>
<param name="imageProvider">The extended <see cref="T:Nokia.Graphics.Imaging.IImageProvider"/>.</param>
<param name="writeableBitmap">An input <see cref="T:System.Windows.Media.Imaging.WriteableBitmap"/> to fill. </param>
<param name="outputOption">Specifies how to adjust if the source image has different aspect ratio from the bitmap passed into this method.</param>
<returns>
An async result with the bitmap.
</returns>
</member>
<member name="T:Nokia.Graphics.Imaging.IterationParameters">
<summary>
A set of parameters that ease iteration over a rectangle within an image array.
</summary>
</member>
<member name="M:Nokia.Graphics.Imaging.IterationParameters.#ctor(Windows.Foundation.Rect,Windows.Foundation.Size)">
<param name="rect">The rect, must be smaller than the image size.</param>
<param name="imageSize">The image size.</param>
<returns>Iteration parameters.</returns>
<example>
<code><![CDATA[
var iterationParameters = GetIterationParameters(rect, imageSize);
int index = iterationParameters.FirstRowIndex;
for (int y = 0; y < (int)rect.Height; ++y)
{
for (int x = 0; x < (int)rect.Width; ++x, ++index)
{
targetPixels[index] = sourcePixels[index]; // Do nothing, just pass through the pixel.
}
index += iterationParameters.NextRowOffset;
}
]]></code>
</example>
</member>
<member name="P:Nokia.Graphics.Imaging.IterationParameters.FirstRowIndex">
<summary>
Starting index of the top-left pixel within the one-dimensional image array.
</summary>
</member>
<member name="P:Nokia.Graphics.Imaging.IterationParameters.NextRowOffset">
<summary>
The distance between the end of a row and the start of the one following it.
</summary>
</member>
<member name="T:Nokia.Graphics.Imaging.StreamImageSource">
<summary>
An image source implementing <see cref="T:Nokia.Graphics.Imaging.IImageProvider"/>, reading its data from a <see cref="T:System.IO.Stream"/>.
</summary>
</member>
<member name="M:Nokia.Graphics.Imaging.StreamImageSource.#ctor(System.IO.Stream,Nokia.Graphics.Imaging.ImageFormat)">
<summary>
StreamImageSource constructor.
</summary>
<param name="stream">The stream to read and use as an image source.</param>
<param name="imageFormat">The format of the image. If not specified, autodetects.</param>
</member>
<member name="M:Nokia.Graphics.Imaging.StreamImageSource.PreloadAsync">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.StreamImageSource.GetBitmapAsync(Nokia.Graphics.Imaging.Bitmap,Nokia.Graphics.Imaging.OutputOption)">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.StreamImageSource.GetInfoAsync">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.StreamImageSource.Lock(Nokia.Graphics.Imaging.RenderRequest)">
<inheritdoc/>
</member>
<member name="M:Nokia.Graphics.Imaging.StreamImageSource.Dispose">
<inheritdoc/>
</member>
<member name="T:Nokia.InteropServices.WindowsRuntime.WriteableBitmapExtensions">
<summary>
Extension methods for <see cref="T:System.Windows.Media.Imaging.WriteableBitmap"/>
</summary>
</member>
<member name="M:Nokia.InteropServices.WindowsRuntime.WriteableBitmapExtensions.AsBitmap(System.Windows.Media.Imaging.WriteableBitmap,Windows.Foundation.Rect)">
<summary>
Creates an <see cref="T:Nokia.Graphics.Imaging.IReadableBitmap"/> wrapping the pixel data of a <see cref="T:System.Windows.Media.Imaging.WriteableBitmap"/>, without copying it.
</summary>
<remarks>
Using the returned <see cref="T:Nokia.Graphics.Imaging.Bitmap"/> leads to undefined results if the <see cref="T:System.Windows.Media.Imaging.WriteableBitmap"/> contains any transparent pixels (alpha less than 255). This is not supported.
<para>The pixel data may be pinned (preventing garbage collection) at various times during the lifetime of the returned <see cref="T:Nokia.Graphics.Imaging.Bitmap"/>.
When used in the Imaging SDK, care is taken not to leave the data pinned for longer than necessary.</para>
</remarks>
<param name="writeableBitmap">The <see cref="T:System.Windows.Media.Imaging.WriteableBitmap"/>.</param>
<param name="cropArea">The area of the <see cref="T:System.Windows.Media.Imaging.WriteableBitmap"/> to wrap as a <see cref="T:Nokia.Graphics.Imaging.Bitmap"/>. By default the entire <see cref="T:System.Windows.Media.Imaging.WriteableBitmap"/> is used.</param>
<returns>A <see cref="T:Nokia.Graphics.Imaging.Bitmap"/> wrapping the pixel data of <paramref name="writeableBitmap"/>.</returns>
</member>
<member name="M:Nokia.InteropServices.WindowsRuntime.WriteableBitmapExtensions.AsBitmap(System.Windows.Media.Imaging.WriteableBitmap,Nokia.Graphics.Imaging.ColorMode,Windows.Foundation.Rect)">
<summary>
INTERNAL: Creates a <see cref="T:Nokia.Graphics.Imaging.Bitmap"/> wrapping the pixel data of a <see cref="T:System.Windows.Media.Imaging.WriteableBitmap"/>, using the specified ColorMode, without copying it.
</summary>
<remarks>
The pixel data may be pinned (preventing garbage collection) at various times during the lifetime of the returned <see cref="T:Nokia.Graphics.Imaging.Bitmap"/>.
When used in the Imaging SDK, care is taken not to leave the data pinned for longer than necessary.
</remarks>
<param name="writeableBitmap">The writeable bitmap to wrap.</param>
<param name="colorMode">The ColorMode to mark the bitmap with.</param>
<param name="cropArea">The area of the <see cref="T:System.Windows.Media.Imaging.WriteableBitmap"/> to wrap as a <see cref="T:Nokia.Graphics.Imaging.Bitmap"/>. By default the entire <see cref="T:System.Windows.Media.Imaging.WriteableBitmap"/> is used.</param>
<returns>A <see cref="T:Nokia.Graphics.Imaging.Bitmap"/> wrapping the pixel data of <paramref name="writeableBitmap"/>.</returns>
</member>
<member name="T:Nokia.InteropServices.WindowsRuntime.WindowsRuntimeBufferExtensions">
<summary>
Provides extension methods for operating on Windows Runtime buffers (Windows.Storage.Streams.IBuffer).
</summary>
</member>
<member name="M:Nokia.InteropServices.WindowsRuntime.WindowsRuntimeBufferExtensions.AsBuffer(System.Int32[])">
<summary>
Wrap an array of <see cref="T:System.Int32"/> in an <see cref="T:Windows.Storage.Streams.IBuffer"/>.
</summary>
<remarks>
The array data may be pinned (preventing garbage collection) at various times during the lifetime of the returned <see cref="T:Windows.Storage.Streams.IBuffer"/>.
When used in the Imaging SDK, care is taken not to leave the data pinned for longer than necessary.
</remarks>
<param name="data">The array to wrap.</param>
<returns>An <see cref="T:Windows.Storage.Streams.IBuffer"/> representing the data.</returns>
</member>
<member name="M:Nokia.InteropServices.WindowsRuntime.WindowsRuntimeBufferExtensions.AsBuffer(System.UInt32[])">
<summary>
Wrap an array of <see cref="T:System.UInt32"/> in an <see cref="T:Windows.Storage.Streams.IBuffer"/>.
</summary>
<remarks>
The array data may be pinned (preventing garbage collection) at various times during the lifetime of the returned <see cref="T:Windows.Storage.Streams.IBuffer"/>.
When used in the Imaging SDK, care is taken not to leave the data pinned for longer than necessary.
</remarks>
<param name="data">The array to wrap.</param>
<returns>An <see cref="T:Windows.Storage.Streams.IBuffer"/> representing the data.</returns>
</member>
<member name="T:Nokia.Graphics.Imaging.WriteableBitmapRenderer">
<summary>
Renders an image source to a writeable bitmap.
</summary>
</member>
<member name="M:Nokia.Graphics.Imaging.WriteableBitmapRenderer.#ctor(Nokia.Graphics.Imaging.IImageProvider,System.Windows.Media.Imaging.WriteableBitmap,Nokia.Graphics.Imaging.OutputOption)">
<summary>
Creates a new writeable bitmap renderer.
</summary>
<param name="source">The image source that will be rendered.</param>
<param name="writeableBitmap">The WriteableBitmap that will be rendered to.</param>
<param name="outputOption">Controls how the image is rendered.</param>
</member>
<member name="M:Nokia.Graphics.Imaging.WriteableBitmapRenderer.RenderAsync">
<summary>
Asynchronous render of image.
</summary>
<returns>An IAsyncAction representing the render operation.</returns>
</member>
<member name="M:Nokia.Graphics.Imaging.WriteableBitmapRenderer.Dispose">
<inheritdoc/>
</member>
<member name="P:Nokia.Graphics.Imaging.WriteableBitmapRenderer.Source">
<summary>
The IImageProvider that will be rendered.
</summary>
</member>
<member name="P:Nokia.Graphics.Imaging.WriteableBitmapRenderer.OutputOption">
<summary>
Output option for desired behavior when source and target aspect ratio differ.
</summary>
</member>
</members>
</doc>

Двоичные данные
packages/NokiaImagingSDK.0.10.0/lib/wp8/X86/Nokia.Graphics.Imaging.dll поставляемый

Двоичный файл не отображается.

Двоичные данные
packages/NokiaImagingSDK.0.10.0/lib/wp8/X86/Nokia.Graphics.Imaging.winmd поставляемый

Двоичный файл не отображается.

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Двоичные данные
packages/NokiaImagingSDK.0.10.0/lib/wp8/X86/Nokia.InteropServices.WindowsRuntime.dll поставляемый

Двоичный файл не отображается.

Двоичный файл не отображается.

Просмотреть файл

@ -1,41 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>Nokia.InteropServices.WindowsRuntime</name>
</assembly>
<members>
<member name="T:Nokia.InteropServices.WindowsRuntime.BufferFactory">
<summary>Factory for creating an instance of IBuffer from an ILockableMemory.</summary>
</member>
<member name="M:Nokia.InteropServices.WindowsRuntime.BufferFactory.#ctor">
<summary>
<markup>
<include item="SMCAutoDocConstructor">
<parameter>Nokia.InteropServices.WindowsRuntime.BufferFactory</parameter>
</include>
</markup>
</summary>
</member>
<member name="M:Nokia.InteropServices.WindowsRuntime.BufferFactory.CreateBuffer(Nokia.InteropServices.WindowsRuntime.ILockableMemory)">
<summary>Create an IBuffer from an ILockableMemory.</summary>
<param name="bufferPointer">A pointer to the data to wrap in an IBuffer.</param>
<returns>An IBuffer pointing to the same data as bufferPointer</returns>
</member>
<member name="T:Nokia.InteropServices.WindowsRuntime.ILockableMemory">
<summary>
A buffer represented by a pointer to a memory location and a length.
Implementations can be used to create IBuffer objects using a BufferFactory.
</summary>
</member>
<member name="P:Nokia.InteropServices.WindowsRuntime.ILockableMemory.Length">
<summary>The length of the buffer.</summary>
</member>
<member name="M:Nokia.InteropServices.WindowsRuntime.ILockableMemory.Lock">
<summary>Lock the buffer for pointer access.</summary>
<returns>Raw pointer as an int64.</returns>
</member>
<member name="M:Nokia.InteropServices.WindowsRuntime.ILockableMemory.Unlock">
<summary>Unlock the buffer for pointer access, invalidating the previously returned raw pointer.</summary>
</member>
</members>
</doc>

Двоичные данные
packages/WPtoolkit.4.2013.06.11/WPtoolkit.4.2013.06.11.nupkg поставляемый

Двоичный файл не отображается.

Просмотреть файл

@ -1,63 +0,0 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>WPtoolkit</id>
<version>4.2013.06.11</version>
<title>Windows Phone Toolkit</title>
<authors>Microsoft</authors>
<owners>Microsoft</owners>
<licenseUrl>http://phone.codeplex.com/license</licenseUrl>
<projectUrl>http://phone.codeplex.com/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Windows Phone toolkit provides a collection of controls, extension methods and page animations to help create beautiful and consistent Windows Phone user interfaces and make common progamming tasks easier. Documentation and source are on CodePlex at http://phone.codeplex.com.</description>
<releaseNotes>Release notes - https://phone.codeplex.com/releases/view/106971
What's New
Localization Update
WPToolkit controls are now completely localized to support all the cultures that are natively supported by Windows Phone 8.0. This was done with the help of the Multilingual App Toolkit for Visual Studio 2012.
The following localizations are available:
Windows Phone 8.0
ar-SA;az-Latn-AZ;be-BY;bg-BG;ca-ES;cs-CZ;da-DK;de-DE;el-GR;en-GB;en-US;es-ES;es-MX;et-EE;fa-IR;fi-FI;fil-PH;fr-FR;fr-CA;he-IL;hi-IN;hr-HR;hu-HU;id-ID;it-IT;ja-JP;kk-KZ;ko-KR;lt-LT;lv-LV;mk-MK;ms-MY;nb-NO;nl-NL;pl-PL;pt-BR;pt-PT;ro-RO;ru-RU;sk-SK;sl-SI;sq-AL;sr-Latn-CS;sv-SE;th-TH;tr-TR;uk-UA;uz-Latn-UZ;vi-VN;zh-CN;zh-TW;
Windows Phone 7.5
Same as before but with a some changes in the names of the cultures supported
cs-cz;da-dk;de-de;el-gr;en-US;en-gb;es-es;fi-FI;fr-fr;hu-HU;it-IT;ja-JP;ko-KR;nb-NO;nl-NL;pl-PL;pt-BR;pt-PT;ru-RU;sv-SE;zh-CN;zh-TW
The specific changes for WP75 are:
cs -&gt; cs-cz
el -&gt; el-GR
da -&gt; da-DK
fi -&gt; fi-FI
hu -&gt; hu-HU
ja -&gt; ja-JP
ko -&gt; ko-KR
pl -&gt; pl-PL
ru -&gt; ru-RU
Gesture Listener Sample
The gesture listener sample has been updated show how Windows Phone 8.0 apps can avoid a dependency on the XNA assemblies.
SpeechTextbox
A new sample control which shows how to create a speech-enabled TextBox by extending the PhoneTextbox to use speech recognition on WP8.
Bug Fixes
As always there are some great bugs fixes in this release.
Top five bug fixes
10602 HubTile disappears when region is not en-us
10575 Navigation from CustomMessageBox Dismissed event causes NullReferenceException
10572 SlideInEffect &amp; TurnstileFeatherEffect not working for LongListSelector in WP8 Toolkit
10582 System.Tuple conflicts with Microsoft.Bcl nuget package
10583 Localized resources not being included in NuGet package
Samples
There is a full featured sample application that is checked in that shows the usage of all the Windows Phone Toolkit controls. It's highly recommended that you download the latest source and run the sample app to find examples of using the controls.</releaseNotes>
<copyright>http://phone.codeplex.com/license</copyright>
<language>en-US</language>
<tags>wptoolkit toolkit windowsphone wp7 wp7dev phone tk wp7tk controls mango wp8 apollo</tags>
</metadata>
</package>

Просмотреть файл

@ -1,3 +0,0 @@
For the Windows Phone toolkit make sure that you have
marked the icons in the "Toolkit.Content" folder as content. That way they
can be used as the icons for the ApplicationBar control.

Двоичные данные
packages/WPtoolkit.4.2013.06.11/content/Toolkit.Content/ApplicationBar.Cancel.png поставляемый

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 350 B

Двоичные данные
packages/WPtoolkit.4.2013.06.11/content/Toolkit.Content/ApplicationBar.Check.png поставляемый

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 414 B

Двоичные данные
packages/WPtoolkit.4.2013.06.11/content/Toolkit.Content/ApplicationBar.Delete.png поставляемый

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 445 B

Двоичные данные
packages/WPtoolkit.4.2013.06.11/content/Toolkit.Content/ApplicationBar.Select.png поставляемый

Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 863 B

Двоичные данные
packages/WPtoolkit.4.2013.06.11/lib/sl3-wp/Microsoft.Phone.Controls.Toolkit.dll поставляемый

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичные данные
packages/WPtoolkit.4.2013.06.11/lib/wp8/Microsoft.Phone.Controls.Toolkit.dll поставляемый

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Двоичный файл не отображается.

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше