This commit is contained in:
Sakari Hyoty 2012-10-25 17:02:21 +03:00
Родитель 679c331a7a
Коммит 6b93e26e0e
1 изменённых файлов: 149 добавлений и 0 удалений

149
release_notes.txt Normal file
Просмотреть файл

@ -0,0 +1,149 @@
Camera Explorer
===============
Camera Explorer application demonstrates the use of the new advanced
Windows Phone 8 camera API, the Windows.Phone.Media.Capture.PhotoCaptureDevice
and the related classes and enumerations on Nokia Lumia devices.
The example has been developed with Silverlight for Windows Phone devices
and tested to work on Windows Phone 8.
This example application is hosted in Nokia Developer Projects:
- http://projects.developer.nokia.com/cameraexplorer
For more information on implementation and porting, visit the wiki pages:
- http://projects.developer.nokia.com/cameraexplorer/wiki
What's new
----------
Version 1.0.0.0: First release of the Camera Explorer
1. Usage
-------------------------------------------------------------------------------
This is a simple build-and-run solution. Learn about Windows Phone 8
camera features by trying out the application.
2. Prerequisites
-------------------------------------------------------------------------------
- C# basics
- Windows 8
- Development environment Microsoft Visual Studio Express for Windows Phone 2012
3. Project structure and implementation
-------------------------------------------------------------------------------
3.1 Folders
-----------
| The root folder contains the project file, the license
| information and this file (release_notes.txt).
|
|- CameraExplorer Root folder for the implementation files.
| |
| |- Assets Graphic assets like icons and tiles.
| |
| |- Properties Application property files.
| |
| |- Resources Application resources.
3.2 Important files and classes
-------------------------------
| File | Description |
|--------------------------------|--------------------------------------------|
| MainPage.xaml(.cs) | The main page with viewfinder and overlays.|
| | |
|--------------------------------|--------------------------------------------|
| SettingsPage.xaml(.cs) | The page that is used to modify camera |
| | parameters. |
|--------------------------------|--------------------------------------------|
| Parameter.cs | Implementations for binding |
| RangeParameter.cs | PhotoCameraDevice API properties to XAML |
| ArrayParameter.cs | controls in the SettingsPage UI. |
|--------------------------------|--------------------------------------------|
3.3 Used APIs/Windows Phone Components
--------------------------------------
using System.Windows.Media.Imaging;
using Windows.Phone.Media.Capture;
4. Compatibility
-------------------------------------------------------------------------------
- Windows Phone 8
Tested to work on Lumia 820 and Lumia 920.
Developed with Microsoft Visual Studio Express for Windows Phone 2012.
4.1 Required Capabilities
-------------------------
ID_CAP_ISV_CAMERA
ID_CAP_MEDIALIB_PHOTO
4.2 Known Issues
----------------
None.
5. Building, installing, and running the application
-------------------------------------------------------------------------------
5.1 Preparations
----------------
Make sure you have the following installed:
* Windows 8
* Windows Phone SDK 8.0
5.2 Using the WINDOWS PHONE 8 SDK
---------------------------------
1. Open the SLN file:
File > Open Project, select the file CameraExplorer.sln
2. Select the target 'Device'.
3. Press F5 to build the project and run it on the device.
5.3 Deploying to Windows Phone 8
--------------------------------
Please see official documentation for deploying and testing applications on
Windows Phone devices:
http://msdn.microsoft.com/en-us/library/gg588378%28v=vs.92%29.aspx
6. License
-------------------------------------------------------------------------------
See the license text file delivered with this project. The license file is also
available online at http://projects.developer.nokia.com/cameraexplorer/browser/Licence.txt
7. Related documentation
-------------------------------------------------------------------------------
An article "Advanced Photo Capturing" published on Nokia Lumia Developer's Library
(http://www.developer.nokia.com/Resources/Library/Lumia/#!advanced-photo-capturing.html)
describes the usage of PhotoCaptureDevice properties in more detail.
8. Version history
-------------------------------------------------------------------------------
1.0.0.0 First release of the Camera Explorer