Bookmarks thumbnails in Opera - opera-extension

is there any permission (like chrome://favicon/) that will allow me to access bookmark images?
so far, I'm only getting Not allowed to load local resource:
when trying to get bkm image

It's not possible to access such images.

Related

Is it possible to crop multiple image using cloudinary?

Is it possible to upload and crop multiple images using Cloudinary (Javascript/React-JS) ?
Any help shall be greatly appreciated.
Thanks
If you're using the Upload API, you can upload multiple files in succession and send the cropping coordinates for each in the custom_coordinates property: https://cloudinary.com/documentation/image_upload_api_reference#upload_optional_parameters
I assume from your question that you're not uploading directly though, and are using the Upload Widget on your page.
If so, the cropping interface only works when uploading a single file, so to upload multiple files and let the user choose crop coordinates for each, you'll need to open the widget multiple times in succession: https://cloudinary.com/documentation/upload_widget_reference#cropping_parameters

Android camera, take picture(s) and save as multipage PDF, then upload to server via <input type="file" />

I have a webform with and want to open it on smartphone - than take pictures of some documents which need to be merged in one PDF, and on the end this file need to be uploaded to server.
My solution is to use Google Drive to upload PDF (scan) to GDrive and then somehow download this file from gdrive to server via some sort of widget (any links appreciate) installed on website.
Maybe someone have a better idea?
I know its late but my answer might help others. I also face the same challenge and implemented a custom solution based on Javascript and Since you are using web form so this solution will perfectly fits on your need.
You have to use JSPdf javascript library, JSPdf provide you pdf object in your browser and you can upload it download it and there are many other thing to play with.
First you have to initialize JSPdf object as per your requirement. I am creating PDF with page size width:500px and height 500px.
pdf = new jsPDF("l", "pt", [500,500]);
Simply when you will take picture from camera you will have each picture in form of base64, that base64 format you have to insert in JSPdf object
pdf.addImage(imgData, 'JPEG', 0, 0);
you can repeat the above code to add pictures from camera as much as you want, at the back-end these images are compiling and creating pdf document where each page have each images in sequence.
Once you are done, you can get PDF object in form of base64 object using below code that you can upload to any server.
pdf.output('datauristring')
above is only pdf part, you can find complete working example including camera part here Javascript Component to Scan Document

TYPO3: Flag to add teaser images directly

I'm adding a user group as writer currently, but I'm can't add new images directly as teaser pictures in the resources tab. I can access the resources tab but doesn't see the "upload new picture" button.
Does anybody know, which flags I need to upload teaser pictures directly?
Thanks in advance.
Greetings
Your usergroup needs access to the user_upload folder.
If not the inline upload will not show.
Default the user_upload = fileadmin/user_upload this can be adjusted in userTS
Also make sure the user has the setting inline upload enabled.
To improve the answer of minifranske.
You can set a specific upload folder with TSConfig:
options.defaultUploadFolder
https://docs.typo3.org/typo3cms/TSconfigReference/UserTsconfig/Options/Index.html#defaultuploadfolder

Recommended way to embed Google Drive inside a WebView?

I have embedded a Google Drive webpage inside a webView in Mac OS X, but in this case the webpage is not fully functional:
It's not possible to Drag & Drop a file from the filesystem inside a document, (while it's possible to drop an image from another application)
The "Share" button does not work
The Print Button does not work
Multiple entries for the same user appear into the chat when opening the same document various times. The expected behavior is that the number of entries decrease when the user close the page. When a document is shown inside a Mac OS X WebView, the number of entries is increased correctly when opening a page, but it do not decrease when the WebView is closed.
I want to understand what is the recommended way to embed a Google Drive page inside a WebView to avoid all these issues.
Additionals information:
WebView documentation
All the requests are authenticated using the Google Drive Oauth access token.
There is no current recommended way of doing this, it should just work as if you are viewing Google Drive in any browser. Authorization should be done by the cookie though, Oauth token won't help you here.

How to save webcontent and images in objective-c iPhone app?

Requirement of my project is, if device have internet connectivity, need to get the content from server and show it in UIWebview, other wise get conent from local. For that i have stored xml content to sqlite, i don't know how should i save the images which comes in HTML NODE to local. can any one help me out.
Thanks
sri
You are getting url of the image. You can create the documentdirectory and save the images in that directory. http://developer.apple.com/library/ios/navigation/index.html?section=Resource+Types&topic=Sample+C#section=Resource%20Types&topic=Sample%20Code from this url you can find Apple sample code regarding url connection