aboutsummaryrefslogtreecommitdiff
path: root/files/pt-pt/web/api/filereader/readasbinarystring/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-pt/web/api/filereader/readasbinarystring/index.html')
-rw-r--r--files/pt-pt/web/api/filereader/readasbinarystring/index.html85
1 files changed, 85 insertions, 0 deletions
diff --git a/files/pt-pt/web/api/filereader/readasbinarystring/index.html b/files/pt-pt/web/api/filereader/readasbinarystring/index.html
new file mode 100644
index 0000000000..44911105e6
--- /dev/null
+++ b/files/pt-pt/web/api/filereader/readasbinarystring/index.html
@@ -0,0 +1,85 @@
+---
+title: FileReader.readAsBinaryString()
+slug: Web/API/FileReader/readAsBinaryString
+tags:
+ - API
+ - Ficheiros
+ - File API
+ - Referencia
+ - metodo
+translation_of: Web/API/FileReader/readAsBinaryString
+---
+<p>{{APIRef("File API")}}</p>
+
+<p>O método <code>readAsBinaryString</code> é usado para iniciar a leitura dos conteúdos do {{domxref("Blob")}} ou {{domxref("File")}} indicado. Quando a operação da leitura é terminada, o {{domxref("FileReader.readyState","readyState")}} retorna <code>DONE</code>, e o {{event("loadend")}} é acionado. A propriedade {{domxref("FileReader.result","result")}} depois contem o binário bruto do ficheiro.</p>
+
+<p>Note que este método foi removido do File API, mas foi reintroduzido por motivos de compatibilidade com versões antigas.<br>
+ É recomendado usar {{domxref("FileReader.readAsArrayBuffer()")}}.</p>
+
+<h2 id="Sintaxe">Sintaxe</h2>
+
+<pre class="notranslate"><em>instanceOfFileReader</em>.readAsBinaryString(blob);</pre>
+
+<h3 id="Parâmetros">Parâmetros</h3>
+
+<dl>
+ <dt><code>blob</code></dt>
+ <dd>O {{domxref("Blob")}} ou {{domxref("File")}} a ser lido.</dd>
+</dl>
+
+<h2 id="Exemplo">Exemplo</h2>
+
+<pre class="brush: js notranslate">var canvas = document.createElement('canvas');
+var height = 200;
+var width  = 200;
+
+canvas.width  = width;
+canvas.height = height;
+
+var ctx = canvas.getContext('2d');
+
+ctx.strokeStyle = '#090';
+ctx.beginPath();
+ctx.arc(width/2, height/2, width/2 - width/10, 0, Math.PI*2);
+ctx.stroke();
+
+canvas.toBlob(function (blob) {
+  var reader = new FileReader();
+
+  reader.onloadend = function () {
+    console.log(reader.result);
+  }
+
+  reader.readAsBinaryString(blob);
+});</pre>
+
+<h2 id="Browser_Compatibility" name="Browser_Compatibility">Especificações</h2>
+
+<table class="spectable standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Especificação</th>
+ <th scope="col">Estado</th>
+ <th scope="col">Comentários</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('File API','#readAsBinaryString','readAsBinaryString')}}</td>
+ <td>{{Spec2('File API')}}</td>
+ <td></td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Browser_compatibility" name="Browser_compatibility">Compatibilidade</h2>
+
+
+
+<p>{{Compat("api.FileReader.readAsBinaryString")}}</p>
+
+<h2 id="Ver_também">Ver também</h2>
+
+<ul>
+ <li>{{domxref("FileReader")}}</li>
+</ul>