Xamarin Forms photo Pan/Scale/Crop plugin? - xamarin.forms

I'm making app with using XF pcl.
To make photo viewer/editor function, you should add Pan/Scale/Crop.
Is there good plugin that somebody already have done for it?
Of course I can make my own but
It's very common behavior so I'm curious.
Thanks.

You might want to try this, this library has a lot of different transformations.
https://github.com/luberda-molinet/FFImageLoading
https://www.nuget.org/packages/Xamarin.FFImageLoading.Forms/

Related

Is it a good practice to customize nopcommerce in the code base?

I am new to the nopcommerce development. One thing I noticed about in the first place is that, to custom the system(adding fields to category, product), I must edit the official code. I am not sure with this approach, especially when I think about the upgrading in the future. But seems this is the only way? Can anyone share with me your points on this topic? Thanks.
Short answer: not a good idea to change base code.
And also it depends on how you change.
Some tips on changing base code
make sure the signature of base methods remains the same. Else this will break lots of plugins.
create new method if you need to change signature of base method.
And last, you should really try writing plugins. If you see the nopcommerce code plugins are injected everywhere you would need. I personally find it cleaner and easier(after a phase) to write code when creating plugin.

Building a Custom Browser in JavaFx 8

I am interested in building a custom browser in javafx 8 using the WebView component as a personal project. One of the features I hope to include is the ability to play flash video / sound. I'm not sure where to start so I'm hoping someone here could give me a few pointers as to how I'd go about accomplishing this.
Also, if you're aware of any resources out there that might come in handy when it comes to adding additional functionality I'd appreciate it. I'm hoping to make this fairly full featured.
Thanks in advance!
I'd stop this project because WebView does not support flash videos.
https://docs.oracle.com/javase/8/javafx/media-tutorial/overview.htm
It looks like I found a component that meets my requirements. JxBrowser.
https://dzone.com/articles/htmlcssjavascript-gui-java-0
https://www.teamdev.com/jxbrowser

Sample with Xamarin.Forms and Vuforia?

Where can I find a working example that uses the library "Vuforia" in Xamarin.Forms portable (Droid+iOS) for WinPhone I know that does not work?
Or working converted library for specific platform?
From what I understand. Xamarin is for Custom Touches and UI. So when it comes to Vuforia, the only feature it is going to use is the augmentation.
Hence, if you want to use Xamarin for it's functionalities, you can do so but it will not interfere with the Vuforia virtual touch buttons.
I hope this is what you asked for. Examples this specific aren't available online, I would think.

Is there a Flex widget for a common calculator?

I need a calculator for a flex app I am making, and was wondering if there was any official widget prebuilt or already in good quality. I could make one myself but it would be nice to use one that already existed and had a nice api to customize it with. Any ideas? Thanks!
Not official or anything, but you should check out this one.
Yottabyte Calculator
Source code is here.

developing plugin for eclipse

Anybody out there who had developed plugins for eclipse?
I am using eclipse for last 4-5 years and am just thinking about developing some plugins for eclipse. I dont know anything about that, like how its written and all. If someone who has experience on this can show light over that, it would be great. Some really good tutorials or links or any useful articles will do.
Cheers,
PK
this might help you have a look
http://www.vogella.de/articles/EclipsePlugIn/article.html
and for breif you can go here too
http://www.ibm.com/developerworks/library/os-ecplug/
Here is one more tutorial: http://eclipsepluginsite.com/
You can start from creating a sample eclipse plugin project. You could also use their plugin-spy (Alt-Shift-F1) to gain insight into any screen. You can start from your first plugin.
Also have a look at the sample code that is generated by creating a new project using the various plug-in wizards.

Resources