Skip to content

Instantly share code, notes, and snippets.

@SpeedZ
SpeedZ / Code.gs
Last active February 15, 2023 18:51
OCR
function doGet(request) {
if (request.parameters.url != undefined && request.parameters.url != "") {
var imageBlob = UrlFetchApp.fetch(request.parameters.url).getBlob();
var resource = {
title: imageBlob.getName(),
mimeType: imageBlob.getContentType()
};
var options = {
ocr: true
};
@SpeedZ
SpeedZ / init_by_gas_hub.html
Created May 16, 2020 15:57
Google App Script OCR
init by gas-hub, just delete this file.