- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好吧,所以我一直在尝试找出如何做到这一点一段时间,但无济于事,所以我想我只是在这里问一下!我希望能够通过单击按钮轻松地将您在此 Canvas 上绘制的任何内容上传到 Google Drive,但每次我尝试为 Google Drive API 分配 data-src 时,我都做不到。我不知道如何将 Javascript 合并到 html 中。我有一个使用 canvas.toDataUrl 的保存按钮,但我还想要一个使用 toDataUrl 作为 src 的 Google Drive 保存按钮。我的代码如下。我在 repl.it 上完成了这一切,因此您也可以在 https://repl.it/@AnthonyRobinso2/Pixel-Paint 上找到我的代码
HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>repl.it</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="https://apis.google.com/js/platform.js" async defer></script>
</head>
<center>
<body>
<canvas onmouseup="stop(event)" onmousedown="go(event)" onmousemove="paint(event)" id='pixelCanvas' height='400px' width='450px' ></canvas>
<div class = 'details'>
<button onclick="clearCanvas()">Clear</button>
<button onclick='eraser()'>Eraser</button>
<button onclick='smallerSize()'>-1 Pixel</button>
<button onclick="biggerSize()">+1 Pixel</button>
<button onclick='save()'>Save</button>
<div>
<p>Simple Color Changer</p>
<input type="range" min="0" max="12" value="0" class="slider" id="myRange">
</div>
<div>
<p>Advanced Color Changer</p>
<input type='color' id='advancedColorPicker' value="#000000" onchange='advancedColor()'>
</div>
<div>
<p>Preview:</p>
<canvas id = 'preview' height='50px' width='50px'></canvas>
<p id='colorSliderValue'>Black</p>
<p>Simple Background Color Changer</p>
<input type="range" min="0" max="12" value="0" class="slider" id="backgroundSlider">
<p>Moving this will erase all you have drawn! Be warned!</p>
<div class="g-savetodrive" id='saveToDrive'
data-src= 'THIS IS WHAT I NEED HELP WITH'
data-filename="Pretty Picture"
data-sitename="Pixel Paint">
</div>
<script src="script.js"></script>
</div>
</body>
</center>
</html>
Javascript:
var canvas = document.getElementById("pixelCanvas");
var previewCanvas = document.getElementById('preview');
var previewCtx = previewCanvas.getContext("2d");
var ctx = canvas.getContext("2d");
var brushWidth = 1;
var brushHeight = 1;
var x;
var y;
var start;
var radius = 1;
var color = 'black';
var backgroundColor = 'lightgrey';
previewCtx.beginPath();
previewCtx.arc(25,25,radius, 0, 2 * Math.PI);
previewCtx.fillStyle = color;
previewCtx.fill();
function drawBackground(){
ctx.beginPath();
ctx.rect(0,0,canvas.width,canvas.height);
ctx.fillStyle = backgroundColor;
ctx.fill();
}
drawBackground();
function go(event){
start=1;
}
function paint(event) {
var rect = canvas.getBoundingClientRect();
mouseX = event.clientX - rect.left;
mouseY = event.clientY - rect.top;
if(start==1){
ctx.beginPath();
ctx.arc(mouseX, mouseY, radius, 0, 2 * Math.PI);
ctx.fillStyle = color;
ctx.fill();
}
}
function stop(event) {
start=0;
}
function clearCanvas(){
drawBackground();
}
function biggerSize(){
radius = radius + 1
previewCtx.clearRect(0,0,previewCanvas.width,previewCanvas.height);
previewCtx.beginPath();
previewCtx.arc(25,25,radius, 0, 2 * Math.PI);
previewCtx.fillStyle = color;
previewCtx.fill();
}
function smallerSize(){
if(radius > 1){
radius = radius - 1
previewCtx.clearRect(0,0,previewCanvas.width,previewCanvas.height);
previewCtx.beginPath();
previewCtx.arc(25,25,radius, 0, 2 * Math.PI);
previewCtx.fillStyle = color;
previewCtx.fill();
}
}
var slider = document.getElementById("myRange");
var backgroundSlider = document.getElementById("backgroundSlider");
// Update the current slider value (each time you drag the slider handle)
backgroundSlider.oninput = function(){
if(this.value == 0){
backgroundColor = 'lightgrey';
drawBackground();
}
if(this.value == 1){
backgroundColor = 'black';
drawBackground();
}
if(this.value == 2){
backgroundColor = 'brown';
drawBackground();
}
if(this.value == 3){
backgroundColor = 'cyan';
drawBackground();
}
if(this.value == 4){
backgroundColor = 'blue';
drawBackground();
}
if(this.value == 5){
backgroundColor = 'green';
drawBackground();
}
if(this.value == 6){
backgroundColor = 'magenta';
drawBackground();
}
if(this.value == 7){
backgroundColor = 'orange';
drawBackground();
}
if(this.value == 8){
backgroundColor = 'pink';
drawBackground();
}
if(this.value == 9){
backgroundColor = 'violet';
drawBackground();
}
if(this.value == 10){
backgroundColor = 'red';
drawBackground();
}
if(this.value == 11){
backgroundColor = 'yellow';
drawBackground();
}
if(this.value == 12){
backgroundColor = 'white';
drawBackground();
}
}
slider.oninput = function() {
var output = document.getElementById("colorSliderValue");
output.innerHTML = slider.value; // Display the default slider value
output.innerHTML = this.value;
if(this.value == 0){
output.innerHTML = 'Black';
color = 'black';
output.style.color = 'black';
}
if(this.value == 1){
output.innerHTML = 'Grey';
color = 'grey';
output.style.color = 'grey';
}
if(this.value == 2){
output.innerHTML = 'Brown';
color = 'brown';
output.style.color = 'brown';
}
if(this.value == 3){
output.innerHTML = 'Cyan';
color = 'cyan'
output.style.color = 'cyan';
}
if(this.value == 4){
output.innerHTML = 'Blue';
color = 'blue'
output.style.color = 'blue';
}
if(this.value == 5){
output.innerHTML = 'Green';
color = 'green';
output.style.color = 'green';
}
if(this.value == 6){
output.innerHTML = 'Magenta';
color = 'magenta';
output.style.color = 'magenta';
}
if(this.value == 7){
output.innerHTML = 'Orange';
color = 'orange';
output.style.color = 'orange';
}
if(this.value == 8){
output.innerHTML = 'Pink';
color = 'pink';
output.style.color = 'pink';
}
if(this.value == 9){
output.innerHTML = 'Violet';
color = 'violet';
output.style.color = 'violet';
}
if(this.value == 10){
output.innerHTML = 'Red';
color = 'red';
output.style.color = 'red';
}
if(this.value == 11){
output.innerHTML = 'Yellow';
color = 'yellow';
output.style.color = 'yellow';
}
if(this.value == 12){
output.innerHTML = 'White';
color = 'white';
output.style.color = 'white';
}
previewCtx.clearRect(0,0,previewCanvas.width,previewCanvas.height);
previewCtx.beginPath();
previewCtx.arc(25,25,radius, 0, 2 * Math.PI);
previewCtx.fillStyle = color;
previewCtx.fill();
}
function eraser(){
color = backgroundColor;
previewCtx.clearRect(0,0,previewCanvas.width,previewCanvas.height);
previewCtx.beginPath();
previewCtx.arc(25,25,radius, 0, 2 * Math.PI);
previewCtx.fillStyle = 'lightgrey';
previewCtx.stroke();
previewCtx.fill();
}
function advancedColor(){
color = document.getElementById('advancedColorPicker').value;
previewCtx.clearRect(0,0,previewCanvas.width,previewCanvas.height);
previewCtx.beginPath();
previewCtx.arc(25,25,radius, 0, 2 * Math.PI);
previewCtx.fillStyle = color;
previewCtx.fill();
}
function save(){
var image = canvas.toDataURL("image/png").replace("image/png", "image/octet-stream"); // here is the most important part because if you dont replace you will get a DOM 18 exception.
window.location.href=image;
}
document.getElementById('saveToDrive');
console.log(saveToDrive.data);
CSS:
#pixelCanvas{
border:1px solid black;
background-color:lightgrey;
cursor:
}
#colorSliderValue{
position: relative;
text-Shadow: -0.5px -0.5px 0 #000, 0.5px -0.5px 0 #000, -0.5px 0.5px 0 #000, 0.5px 0.5px 0 #000;
}
#preview{
border:1px solid black;
background-color:lightgrey;
}
.details{
position: relative;
}
最佳答案
来自Save to Drive关于 data-src
属性/参数的文档:
data-src
is a required parameter containing the URL of the file to be saved.
URLs can be absolute or relative.
The
data-src
URL can be served from the same domain, subdomain, and protocol as the domain where the button is hosted. You must use matching protocols between the page and the data source.Data URIs and
file://
URLs are not supported.Due to the browser's same origin policy, this URL must be served from the same domain as the page upon which it is placed, or be accessible using Cross Origin Research Sharing (CORS). If the button and resource are on different domains, refer to Handle buttons and resources on different domains.(#domain).
To serve the file when the same page is served by both http and https, specify the resource without a protocol such as
data-src="//example.com/files/file.pdf"
, which uses the appropriate protocol based on how the hosting page was accessed.
明确指出此方法不支持数据 URI。
作为替代方案,我建议您使用 Drive API Files: Create
方法。单击“保存”按钮后,您可以使用 Canvas 'toBlob()方法将其转换为 image/png
blob(或者,如果您愿意,您可以为其指定另一个输出 mimetype,例如 image/jpeg
),然后创建 创建
请求。为此,我建议您查看以下链接,因为我相信它们对您有用:
关于javascript - 如何将 Google Drive API 的 data-src 分配给 HTML 中的 Canvas,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59363262/
我已经设置了 Azure API 管理服务,并在自定义域上配置了它。在 Azure 门户中 API 管理服务的配置部分下,我设置了以下内容: 因为这是一个客户端系统,我必须屏蔽细节,但以下是基础知识:
我是一名习惯 React Native 的新程序员。我最近开始学习 Fetch API 及其工作原理。我的问题是,我找不到人们使用 API key 在他们的获取语句中访问信息的示例(我很难清楚地表达有
这里有很多关于 API 是什么的东西,但是我找不到我需要的关于插件 API 和类库 API 之间的区别。反正我不明白。 在 Documenting APIs 一书中,我读到:插件 API 和类库 AP
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
我正在尝试找出设计以下场景的最佳方法。 假设我已经有了一个 REST API 实现,它将从不同的供应商那里获取书籍并将它们返回给我自己的客户端。 每个供应商都提供单独的 API 来向其消费者提供图书。
请有人向我解释如何使用 api key 以及它有什么用处。 我对此进行了很多搜索,但得到了不同且相互矛盾的答案。有人说 API key 是保密的,它从不作为通信的一部分发送,而其他人则将它发送给客户端
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它. 4年前关闭。 Improve this
谁能告诉我为什么 WSo2 API 管理器不进行身份验证?我已经设置了两个 WSo2 API Manager 1.8.0 实例并创建了一个 api。它作为原型(prototype) api 工作正常。
我在学习 DSL 的过程中遇到了 Fluent API。 我在流利的 API 上搜索了很多……我可以得出的基本结论是,流利的 API 使用方法链来使代码流利。 但我无法理解——在面向对象的语言中,我们
基本上,我感兴趣的是在多个区域设置 WSO2 API 管理器;例如亚洲、美国和欧洲。一些 API 将部署在每个区域的数据中心内,而其他 API 将仅部署在特定区域内。 理想情况下,我想要的是一个单一的
我正在构建自己的 API,供以下用户使用: 1) 安卓应用 2) 桌面应用 我的网址之一是:http://api.chatapp.info/order_api/files/getbeers.php我的
我需要向所有用户显示我的站点的分析,但使用 OAuth 它显示为登录用户配置的站点的分析。如何使用嵌入 API 实现仪表板但仅显示我的网站分析? 我能想到的最好的可能性是使用 API key 而不是客
我正在研究大公司如何管理其公共(public) API。我想到的是拥有成熟 API 的公司,例如 Google、Facebook、Twitter 和 Amazon。 这些公司向公众公开了许多不同的 A
在定义客户可访问的 API 时,以下是首选的行业惯例: a) 定义一组显式 API 方法,每个方法都有非常狭窄和特定的目的,例如: SetUserName SetUserAge Se
这在本地 deserver 和部署时都会发生。我成功地能够通过留言簿教程使用 API 资源管理器,但现在我已经创建了自己的项目并尝试访问我编写的第一个 API,它从未出现过。搜索栏旁边的黄色“正在加载
我正在尝试使用 http://ip-api.com/ api通过我的ip地址获取经度和纬度。当我访问 http://ip-api.com/json从我的浏览器或使用 curl,它以 json 格式返回
这里的典型示例是 Twitter 的 API。我从概念上理解 REST API 的工作原理,本质上它只是针对您的特定请求向他们的服务器查询,然后您会在其中收到响应(JSON、XML 等),很棒。 但是
我能想到的最好的标题,但要澄清的是,情况是这样的: 我正在开发一种类似短 url 的服务,该服务允许用户使用他们的 Twitter 帐户“登录”并发布内容。现在这项服务可以包含在 Tweetdeck
我正在设计用于管理评论和讨论线程的 API 方案。我想有一个点 /discussions/:discussionId 当您GET 时,它会返回一组评论和一些元数据。评论也许可以单独访问 /discus
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭去年。 Improve this quest
我是一名优秀的程序员,十分优秀!