以下はGWTのキャンバスから画像を取得するためのコードです。gwt canvasで生成されたイメージをコンピュータのハードディスクに保存する方法は?
testCanvas.setWidth(144 + "px");
testCanvas.setHeight(144 + "px");
testCanvas.setCoordinateSpaceWidth(144);
testCanvas.setCoordinateSpaceHeight(144);
context = testCanvas.getContext2d();
context.fillRect(1,1,114,114);
imagelocation=testCanvas.toDataUrl();
Image image=new Image(imagelocation);
今、画像があり、この画像をコンピュータのある場所に保存したいと考えています。どうやってやるの?
あなたはそのイメージのファイルダウンロードダイアログボックスを表示したいと思っていますか? – Rohan