tinyMCE insert image and upload - tinymce

tinyMCE has a "insert image button" wich it asks URL.
I want to add browse button so that user can upload image from pc.
I have writed server side PHP files that will grab image and store in server.
the php file will return URL of stored image on server and tiny MCE must grab URL of stored image and insert below code to the source of editing text.
<img src='http://mysite.com/url_that_php_file_returns.jpg'/>
is it Possible?

i wrote a plugin myself. It was not that hard.

Related

Selenium: How do i upload a photo and insert it in the email?

I want to insert a photo in a mail (gmail) by automation in Selenium.
I can attach an photo, so that is no problem.
The problem is when i come to this screen and want to change to the Upload tab. I can't find the correct findElement-question.
Image
I have tried these, but dont get it to work:
driver.findElement(By.name("Upload")).click();
driver.findElement(By.xpath("//textarea[#name='Upload']")).click();
To do that first switch to frame i.e
WebElement framename=driver.findElement(By.id("amtponuhel03"));
driver.switchTo().frame(frameElement);
Then pass xpath of upload element to upload
driver.findElement(By.xpath("//*[#id=':7']/div[.='Upload']"));
this should work

Why is the raw url of pdf file in github can't be open with browser directly instead of download

I tried pdf, txt and png file url, only pdf url can't be open with browser if click the url, but trigger download.
I google this but only got how to fix, like instead with google doc or use pdf.js, or other html code.
What is the reason? the website ? Forgive me that i have no idea of website architecture.
When you get a file from a website, it has a content type sent along with it. Depending on the content type, the browser may choose to display it. For example, content type "application/pdf" might be shown in a browser, but "application/octet-stream" will be downloaded.
The raw URL on GitHub has content type "application/octet-stream" (a binary file) so that it will be downloaded.
The only way around this, since you can't change GitHub's code that sets the content type, is to get the data from JavaScript and parse it there -- by using pdf.js or something similar.

Aviary client side implementation vs needing a server side component

I'm planning on building an online image editor. I want to use aviary library for it. https://developers.aviary.com
Can someone explain me how I implement it? More specifically, do I need to send an image to their server in order to modify it? or I just do all the modifications on client side and then save that image to the server?
The editor works by loading the image client-side via a public url, allowing the user to edit the photo in the browser. When the user saves, the image is POSTed to Aviary's server, where it's uploaded to a temporary storage location. You then get a url to that temporary image passed to you in the onSave callback, which you can use to save the image back to your own server.
See a full client-side integration here: https://developers.aviary.com/docs/web/example

filepicker.io - on .pick / pickAndStore use generated thumbnail

When the file picker is opened either using .pick or .pickAndStore, and an image is selected, a thumbnail of the original image is shown on the side.
I want to reuse that thumbnail, preferably from the already locally stored version. How can I access it e.g., with the filepicker API or other javascript library?
The thumbnail you see during uploading is generated by FilePicker javascript as a data URI (eg, src="data:image/jpeg;base64,...") it never really exists.
Once the file is uploaded you can use the image conversion rest API:
https://developers.inkfilepicker.com/docs/web/#inkblob-images

Load UIWebView's Contents into Email Message

I have a UIWebView in my view controller. This UIWebView shows a PDF file. I have created a button. When the user clicks on this button, I want to send the content of the UIWebView via email. As a template I use the MailComposer from Apple. In this template Apple isn't using a UIWebView. Apple uses local stored data which works fine. So I am looking to send the content of the UIWebView, my displayed PDF, but I don't know how to do this.
Thanks.
You could try using -stringByEvaluatingJavaScriptFromString: to get the HTML content of the page and using -setMessageBody:isHTML: to set the message body. You may want use a <base /> tag, though, to set the page's base URL so relative URLs function.
Edit
You could download the PDF and use addAttachmentData:mimeType:fileName: to attach the PDF to an email.
What you will need to do is download the pdf and save it on the device and then attach it as per Apple' example.
see one approach to downloading here