Including here.com static image - mpdf

After adding static here.com map image into my HTML and converting to PDF got this error:
Uncaught Mpdf\MpdfImageException: Error parsing image file - image
type not recognized, and not supported by GD imagecreate
There is no problem regarding showing image in browser.
My link: https://image.maps.api.here.com/mia/1.6/mapview?app_id={MY_APP_ID}&app_code={MY_APP_CODE}&lat=52.518752&lon=13.402277&vt=0&z=14
If I use Google Map API for static image map convert to PDF works fine.
https://maps.googleapis.com/maps/api/staticmap?center=Brooklyn+Bridge,New+York,NY&zoom=13&size=600x300&maptype=roadmap&markers=color:blue%7Clabel:S%7C40.702147,-74.015794&key={MY_API_KEY}
UPDATE:
PHP Version 7.0.31 and GD version

Related

Having trouble Embedding a specific Vimeo Url

I used to embed Vimeo videos with this url format: https://vimeo.com/514607003 (only numbers). It works just fine. But some videos are in an other format and I cant embed them no matter what:
https://vimeo.com/605783608/493d2ee578
I'm getting this error on console when I try to embed it:
GET https://player.vimeo.com/video/605783608 404 (Not Found)
when I add the second Id of the video Url to the embedded Url, the error remains the same.
The answer appears to be to embed the video with a special query parameter h containing the second key:
https://player.vimeo.com/video/605783608?h=493d2ee578
This is determined by looking at Vimeo's own embed code; I did not find documentation explaining why this is.

qt qml display image from web server to my qt quick app

hi i have image stored in google drive or mega a want to display it using my qt android app
i thinks the problem is this
QML Image: Erreur de décodage
Format d'image non support
https://drive.google.com/file/d/**102A4WrjwOlySb8LWfMZ7CiIrt0f-12CO/view?usp=sharing**
this work well to my app
https://zupimages.net/up/21/05/cwkf.png
You should modify your Google Drive URL a bit as advised here to get a direct link to the image file.
Modified URL format:
https://drive.google.com/uc?export=download&id=FILE_ID
Example QML image which displays your Google Drive image:
Image {
source: "https://drive.google.com/uc?export=download&id=102A4WrjwOlySb8LWfMZ7CiIrt0f-12CO"
}

Yandex API to translate PDF and return translated PDF?

I have used the yandex translate api to translate strings and it works just fine, just wanted to confirm if there is any way to send a pdf file with the post request and in response get a pdf file or html, like in the demo ? Yandex Translate API OR does the google translate api support document files this link suggests that it is not supported yet.
Figured it out! well.. we did not use the yandex api, instead we used python pdfkit to convert the pdf to html, (css, html, images and js separately), then used the google tranlate api post call to translate the html and convert that back to pdf.

Unable to play video in Qt5 on snowleopard

When using Qt5 on snowleopard, even with the prebuild 5.1 Qt version, I'm unable to make a video show up in a QWebView, I tried loading the video in a tag without success.
The Dev tools highlight a 0pixels width x 0px height at the video tag origin.
I tried loading a h264 mp4 file directly into the qwebview, but all it tells me is inside the Qt output console
Error loading /Library/Internet Plug-Ins/QuickTime Plugin.plugin/Contents/MacOS/QuickTime Plugin: dlopen(/Library/Internet Plug-Ins/QuickTime Plugin.plugin/Contents/MacOS/QuickTime Plugin, 265): no suitable image found. Did find:
/Library/Internet Plug-Ins/QuickTime Plugin.plugin/Contents/MacOS/QuickTime Plugin: no matching architecture in universal wrapper
And blank page in the view.
Have no idea where to go from here.
Any idea or suggestion why I'm unable to play videos (even local videos) inside QtWebkit?

Unable to load an image in sub folder present in the working directory- Google maps marker icon

A simple issue but unable to find a solution.
I have some image files that I placed in a subfolder called icons in my working directory in my ASP.NET website. I want to set an image during initialization to the markers on my Google map. But this isn't working. I have tried-
var marker= new google.maps.Marker({icon:'E:\cdeez\Sites\googletest 5\icons\busballon.png', position:pos,map:map});
It gives an error:
Not allowed to load local resource: file:///E:/cdeezSitesgoogletest%205icons%08usballon.png
However there is no problem if I place the image in the working directory. I guess giving the absolute path is not the right way too. So what is the right way in the above case.(Just a reminder- the above code will be in the aspx file).
According to the MarkerOptions docs, the icon should be a URL. However local files (embedded with file:///) tend to be ignored by browsers if the website is served over http - and I think that is what is happening in your case.
I would suggest to try out the following steps:
try using a relative path, e.g icon: "/icons/busballon.png"
try using a http path to your file, e.g. icon: "http://yoursite.com/icons/busballon.png"

Resources