I have a service that uses Winding2 font to draw an image. When I deploy it to Azure the characters are still drawn but just not in the correct font. I think they are getting converted to Arial. My question is, can I uses fonts like Windings2 on Azure web service instance? How could I possibly know what other fonts are not supported.
Thank You!
Yes, you can. You just need to install the font using a script in start up task.
You can refer to this post here
Related
I want to develop an invitation card maker app in flutter so the issue is that I don't know what kind of data I will need to import from the backend to make my cards editable. i have designed cards in photoshop but I don't know how to make them editable in a mobile app. if anyone has a suggestion please give me your suggestions
I'm glad to be able to help you.
In those cases you do the following:
Receive image to edit.
Use external library made to edit photos (https://pub.dev/packages/image_editor_pro)
Send edited image to the backend and replace the old one.
Hi all I am very happy that I finally found the solution.
So we have to first import the background image from API and load text data on it then we can use flutter packages to edit those texts.
But there is one thing you need to do before you import designs to the mobile app. You will need to have a perfect pixel size of font and background otherwise it will be overlapped.
I have images with dimensions of 3000*5000 so I have used aspect ratio for the responsiveness in every device.
And I have used Figma to design cards so we can get all CSS very fast for every line of text and then I am converting it to JSON using CSS to js converter and js to JSON converters.
I am using azure spatial anchors samples in my unity project for Hololens 2. I have successfully able to deploy the sample project build to my hololens but when i try to create the anchors it does not do anything, i also have entered the keys.
I dont see any details of anchors created in the admin panel of azure spatial anchors.
Any help would be appreciated.
We have recently polished the documentation page on how to run the sample.
We have also completely revamped the tutorial on implementing your own ASA sample.
Please let us know if you still have any issues running the sample by going to the appropriate link on the support page
I'm developing a web project using Node.js where users can set their profile image by uploading it to the server.
I need to perform basic manipulation on those images (resize and crop), and then store them into a blob.
I usually use GraphicsMagic or ImageMagick to achieve this kind of tasks, but I want to publish this project on Microsoft Azure website.
Is there a known and safe way to manipulate images serverside into an Azure website using Node.js?
You can use node modules with Azure Websites. However you cannot install any third party apps on the Web Sites (thus no ImageMagick or Graphics Magic).
Looking out in the wild, you may find some native node modules that does not require external components to manipulate images like the lwip and probably some more. Just find your module that is not dependent on external third party libraries and is fully self contained.
I made imagemagick work on azure websites by using site extension.
You can check the repository for more info:
https://github.com/fatihturgut/azure-imagemagick-nodejs
I'm developing Windows 8 apps in JavaScript and in the current one I would like to modify a registry key, but how? I would like to change the background of desktop programmatically.
From what I found MSDN, Metro Style Apps (now called Windows Store Apps) doesn't have access to the Registry.
See this:
http://social.msdn.microsoft.com/Forums/en-US/winappswithcsharp/thread/11f30427-e7e8-4c7f-8bed-04528c249eb6
P.S. You could probably talk more about the what you want to do so that people can help you find an alternative.
I have been integrating a standard border container (Nested Layout Widgets) from this site
http://dojotoolkit.org/reference-guide/dijit/layout/BorderContainer.html which worked quite well.
The problem is that I want to use this application offline but didn't find a way to do so. I mean why do I have to be online to use it anyway?
Can you help here? Are there any files that are not stored locally that I have to link across the project? Or is it just not possible to use it offline?
Also, what about the dojo offline project anyway? Th last status is from 2007?
Thank you very much for your help in advance!
Best
TTP
You should look at the HTML5 application cache for offline applications. dojox.offline is pretty much abandoned given the newer browser technology.