2016-08-19 23 views
-2

イメージを含むiframeがあります。画像ソースは、S3バケットの画像にリンクされています。この画像をBase64にエンコードし、iframeの本体をデータベースに保存する必要があります。イメージをAmazon S3のBase64にエンコードする

どうすればいいですか?

+1

可能性のある重複したから、この機能を使用する[JavaScriptで画像データを取得する?](http://stackoverflow.com/questions/ 934012/get-image-data-in-javascript) –

+0

あなたの仕事を他人に依頼する以外に、何を試しましたか? –

答えて

0

このHow to access the <img /> in document from iframe?

$('#Iframe1').contents().find('img').css({'width':'100%','height':'90%'}); 

を試してみて、その後のここGet image data in JavaScript?

function getBase64Image(img) { 
    // Create an empty canvas element 
    var canvas = document.createElement("canvas"); 
    canvas.width = img.width; 
    canvas.height = img.height; 

    // Copy the image contents to the canvas 
    var ctx = canvas.getContext("2d"); 
    ctx.drawImage(img, 0, 0); 

    // Get the data-URL formatted image 
    // Firefox supports PNG and JPEG. You could check img.src to 
    // guess the original format, but be aware the using "image/jpg" 
    // will re-encode the image. 
    var dataURL = canvas.toDataURL("image/png"); 

    return dataURL.replace(/^data:image\/(png|jpg);base64,/, ""); 
} 
+0

ありがとう、私はこれをやろうとしています:var image = $( '#Iframe1')。contents()。find( 'img'); console.log( "Base64" + current.getBase64Image(image));私はエラーが "提供された値はHTMLImageElementのタイプではありません" –

+0

イメージの値をログアウトし、それが何であるか教えてください –

関連する問題