イメージを含むiframeがあります。画像ソースは、S3
バケットの画像にリンクされています。この画像をBase64にエンコードし、iframeの本体をデータベースに保存する必要があります。イメージをAmazon S3のBase64にエンコードする
どうすればいいですか?
イメージを含むiframeがあります。画像ソースは、S3
バケットの画像にリンクされています。この画像をBase64にエンコードし、iframeの本体をデータベースに保存する必要があります。イメージをAmazon S3のBase64にエンコードする
どうすればいいですか?
この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,/, "");
}
ありがとう、私はこれをやろうとしています:var image = $( '#Iframe1')。contents()。find( 'img'); console.log( "Base64" + current.getBase64Image(image));私はエラーが "提供された値はHTMLImageElementのタイプではありません" –
イメージの値をログアウトし、それが何であるか教えてください –
可能性のある重複したから、この機能を使用する[JavaScriptで画像データを取得する?](http://stackoverflow.com/questions/ 934012/get-image-data-in-javascript) –
あなたの仕事を他人に依頼する以外に、何を試しましたか? –