integrate LightScribe functionality with c# application - c#

hope you guys could share some light with me..are you guys aware of lightscribe? i have the sdk document and am tasked to integrate LightScribe functionality with c#.can anyone of you guide me or mayb have some examples to show me?

I haven't used the lightscribe api myself. But it appears to be a C++ API, what you will need to do is write a C# wrapper around it (using p/invoke)
A quick google search also turns up this wrapper library that someone has already done, have a look at the source in that and you will see the techniques used.

Related

MapQuest via C#

I am trying to access to MapQuest via a Winforms C# application.
I can't find any help on how I can make a WebRequest (via JSON, XML or Text). How do I embed my Application Key in that request? Or do I have to perform a login-request or what?
Has anyone perhaps used this API in C#, C++ or Java? I could use some start-help as I can't find any infos on how to do this.
There was a C# .Net API but it is deprecated now and they recommend using WebRequests.
I hope someone can help me! If you need more information just ask. Thanks!

Using IqualProp in C#

I want to develop a tool that will assess the quality of a video. I did some R&D on this and found an interface called "IQualProp", that is part of DirectShow API. I am not trying to get a sample code in C# on how to use this interface, but i am not finding anywhere. There are samples in c++ to use this "IQualProp", but not in C#. Any help on this will be great.
IQualProp iqp = your_obj as IQualProp;
After doing this you can access all the properties of the interface.

How to update content via Google Sites API?

My apologies if this has already been requested/answered before, but I'm having a hard time trying to find information on the web about this. I've been tasked to find a way to directly update the content of a Google Sites page (Such as a text box or image) using the API.
I've been looking about the web for examples of doing this using C#, and have not found much to go by. I have some experience with writing/calling REST and SOAP APIs, but I can't seem to work out what Google uses for its API.
I'm struggling as to how I approach this, as the few examples I have found don't really walk through the code, so they leave me little to understand in order to manipulate it to what I want to achieve. One site I did find was Sites API Demo
Does anybody have any examples, or able to provide a simple example of updating content on a Google Site?
I appreciate any help you can give.
Mark
I realise this is an old question, but I have successfully updated the content of a google sites page using the library provided here, and following the example in the wiki.
I compiled the source as a .dll and added it as a reference to my project.

posting on wordpress using c# library

I am working with PHP and recently started to learn C# so know basic stuff, I used to post on my wordpress blog with MetaWeblog and I found a library here which can be used to post on wordpress using c# but i am not exactly sure how I can use it. I have imported library in visual studio.
http://www.matlus.com/metaweblog-api-c-library/
Kindly if someone can explain and possible show an example code on how to post I will really appreciate. there is a list of methods on above link.
methods
http://www.matlus.com/content/uploads/2011/01/MatlusMetaWeblogClassDiagram.jpg
Best Regards
The blog post you refer to tries to implement MetaWeblog support on the server side, which is not what you are looking for I think.
Maybe you can start from this one,
http://www.wynia.org/wordpress/2006/06/creating-a-basic-metaweblog-api-blogging-client-in-c/

Can ImageMagickNET be used with c#?

I am making an application for editing images. I tried using ImageMagickNET, but can't figure out how to use the API - or if it even works with C#.
Does anybody know ho to use this API or if it works with c#?
ImageMagick.NET appears to be a managed C++ wrapper around the ImageMagick API. As such it should be usable by any .NET language (VB.NET, C#, even IronPython). I don't have experience using it at all but based on what I see in the code in their CodePlex repo I don't see any reason it wouldn't work.

Categories