<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Please do not &amp;quot;shotgun&amp;quot; the in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Debug-camera-functionality-using-connected-device-get-image-name/m-p/1073821#M59106</link>
    <description>&lt;P&gt;Please do not "shotgun" the forum by making the same post on multiple threads, it ends up wasting the valuable time of the support personnel and just results in confusion. We are not available 24/7, so it may take time to see a response, but we do try to respond to all posts. See this post on another thread &amp;gt; &lt;A href="https://software.intel.com/en-us/forums/intel-xdk/topic/705276#comment-1895841" target="_blank"&gt;https://software.intel.com/en-us/forums/intel-xdk/topic/705276#comment-1895841&lt;/A&gt; &amp;lt; I'm closing this thread to avoid duplication.&lt;/P&gt;</description>
    <pubDate>Thu, 19 Jan 2017 23:07:07 GMT</pubDate>
    <dc:creator>PaulF_IntelCorp</dc:creator>
    <dc:date>2017-01-19T23:07:07Z</dc:date>
    <item>
      <title>Debug camera functionality using connected device &amp; get image name</title>
      <link>https://community.intel.com/t5/Software-Archive/Debug-camera-functionality-using-connected-device-get-image-name/m-p/1073820#M59105</link>
      <description>&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;Hi,&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;I have developed an expense claim application using&amp;nbsp;&lt;B&gt;intel XDK&amp;nbsp;&lt;/B&gt;&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;&lt;SPAN style="font-size: 12.8px;"&gt;It helps user to get a picture of their &amp;nbsp;expense bills and store it on the phone, so that he can claim it later time.&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;In earlier&lt;B&gt;&amp;nbsp;Intel XDK&lt;/B&gt;&amp;nbsp;version I could able to debug the app coz there was a debug tab but with the newer version (after 2016 Dec - debug tab is removed) I won't be able to debug for my camera&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;As well as I need to save the captured image into a photo album and save the image name into local storage. Then later time retrieve and show the image by name&amp;nbsp;&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;1. How can I debug remote connected device camera?&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;2. How can I get Image name and path using&amp;nbsp;&lt;SPAN style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;imageURI from following code?&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp;&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;here is my code&lt;/DIV&gt;

&lt;DIV style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 12.8px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; restrict: 'A',&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; require: 'ngModel',&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; link: function (scope, elm, attrs, ctrl) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; elm.on('click', function () {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; navigator.camera.getPicture(&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function (imageURI) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; scope.$apply(scope.setReceipt(imageURI));&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; },&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function (err) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ctrl.$setValidity('error', false);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; scope.$apply(scope.errorUpload('error'));&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }, {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; quality: 50,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; destinationType: Camera.DestinationType.FILE_URI,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; correctOrientation: true,&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;saveToPhotoAlbum: true&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; };&lt;/DIV&gt;</description>
      <pubDate>Thu, 19 Jan 2017 00:46:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Debug-camera-functionality-using-connected-device-get-image-name/m-p/1073820#M59105</guid>
      <dc:creator>sasanka_h_</dc:creator>
      <dc:date>2017-01-19T00:46:41Z</dc:date>
    </item>
    <item>
      <title>Please do not "shotgun" the</title>
      <link>https://community.intel.com/t5/Software-Archive/Debug-camera-functionality-using-connected-device-get-image-name/m-p/1073821#M59106</link>
      <description>&lt;P&gt;Please do not "shotgun" the forum by making the same post on multiple threads, it ends up wasting the valuable time of the support personnel and just results in confusion. We are not available 24/7, so it may take time to see a response, but we do try to respond to all posts. See this post on another thread &amp;gt; &lt;A href="https://software.intel.com/en-us/forums/intel-xdk/topic/705276#comment-1895841" target="_blank"&gt;https://software.intel.com/en-us/forums/intel-xdk/topic/705276#comment-1895841&lt;/A&gt; &amp;lt; I'm closing this thread to avoid duplication.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2017 23:07:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Debug-camera-functionality-using-connected-device-get-image-name/m-p/1073821#M59106</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2017-01-19T23:07:07Z</dc:date>
    </item>
  </channel>
</rss>

