Click here to Skip to main content
15,897,094 members
Articles / Desktop Programming / XAML

Image Enabled Windows Store Applications with LEADTOOLS

7 Jan 2013CPOL4 min read 32.3K   228   4  
The advanced WinRT imaging technology in LEADTOOLS will include everything developers need to build imaging enabled Windows Store applications including support for loading and saving over 100 file formats, PDF and PDF/A, touch screen enabled viewer controls, annotations and image processing.

This article is in the Product Showcase section for our sponsors at CodeProject. These articles are intended to provide you with information on products and services that we consider useful and of value to developers.

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">x86</Platform>
    <ProjectGuid>{35BB5973-759B-4A33-B45D-16BB94B9079E}</ProjectGuid>
    <OutputType>AppContainerExe</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>LEADTOOLSWinRT</RootNamespace>
    <AssemblyName>LEADTOOLSWinRT</AssemblyName>
    <DefaultLanguage>en-US</DefaultLanguage>
    <FileAlignment>512</FileAlignment>
    <ProjectTypeGuids>{BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
    <PackageCertificateKeyFile>LEADTOOLSWinRT_TemporaryKey.pfx</PackageCertificateKeyFile>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
    <DebugSymbols>true</DebugSymbols>
    <OutputPath>bin\x86\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE;NETFX_CORE</DefineConstants>
    <NoWarn>;2008</NoWarn>
    <DebugType>full</DebugType>
    <PlatformTarget>x86</PlatformTarget>
    <UseVSHostingProcess>false</UseVSHostingProcess>
    <ErrorReport>prompt</ErrorReport>
    <Prefer32Bit>true</Prefer32Bit>
  </PropertyGroup>
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
    <OutputPath>bin\x86\Release\</OutputPath>
    <DefineConstants>TRACE;NETFX_CORE</DefineConstants>
    <Optimize>true</Optimize>
    <NoWarn>;2008</NoWarn>
    <DebugType>pdbonly</DebugType>
    <PlatformTarget>x86</PlatformTarget>
    <UseVSHostingProcess>false</UseVSHostingProcess>
    <ErrorReport>prompt</ErrorReport>
    <Prefer32Bit>true</Prefer32Bit>
  </PropertyGroup>
  <ItemGroup>
    <Compile Include="App.xaml.cs">
      <DependentUpon>App.xaml</DependentUpon>
    </Compile>
    <Compile Include="MainPage.xaml.cs">
      <DependentUpon>MainPage.xaml</DependentUpon>
    </Compile>
    <Compile Include="Properties\AssemblyInfo.cs" />
  </ItemGroup>
  <ItemGroup>
    <AppxManifest Include="Package.appxmanifest">
      <SubType>Designer</SubType>
    </AppxManifest>
    <None Include="LEADTOOLSWinRT_TemporaryKey.pfx" />
  </ItemGroup>
  <ItemGroup>
    <Content Include="Assets\Logo.png" />
    <Content Include="Assets\SmallLogo.png" />
    <Content Include="Assets\SplashScreen.png" />
    <Content Include="Assets\StoreLogo.png" />
  </ItemGroup>
  <ItemGroup>
    <ApplicationDefinition Include="App.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </ApplicationDefinition>
    <Page Include="Common\StandardStyles.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="MainPage.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
  </ItemGroup>
  <ItemGroup>
    <Reference Include="Leadtools">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.Codecs">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.Codecs.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.Codecs.Bmp">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.Codecs.Bmp.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.Codecs.Cmp">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.Codecs.Cmp.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.Codecs.Fax">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.Codecs.Fax.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.Codecs.Kernel">
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.Codecs.Kernel.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.Codecs.Png">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.Codecs.Png.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.Codecs.Tif">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.Codecs.Tif.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.Controls">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.Controls.dll</HintPath>
    </Reference>
    <Reference Include="Leadtools.ImageProcessing.Color">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.ImageProcessing.Color.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.ImageProcessing.Core">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.ImageProcessing.Core.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.ImageProcessing.Effects">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.ImageProcessing.Effects.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.ImageProcessing.SpecialEffects">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.ImageProcessing.SpecialEffects.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.ImageProcessing.Utilities">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.ImageProcessing.Utilities.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.Kernel">
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.Kernel.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.Converters">
      <SpecificVersion>False</SpecificVersion>
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.Converters.winmd</HintPath>
    </Reference>
    <Reference Include="Leadtools.Pdf">
      <HintPath>C:\LEADTOOLS 17.5\Bin\WinRT\Win32\Leadtools.Pdf.winmd</HintPath>
    </Reference>
  </ItemGroup>
  <PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '11.0' ">
    <VisualStudioVersion>11.0</VisualStudioVersion>
  </PropertyGroup>
  <Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</Project>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Help desk / Support LEAD Technologies, Inc.
United States United States
Since 1990, LEAD has established itself as the world's leading provider of software development toolkits for document, medical, multimedia, raster and vector imaging. LEAD's flagship product, LEADTOOLS, holds the top position in every major country throughout the world and boasts a healthy, diverse customer base and strong list of corporate partners including some of the largest and most influential organizations from around the globe. For more information, contact sales@leadtools.com or support@leadtools.com.
This is a Organisation (No members)


Comments and Discussions