Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for a conversion library that can convert my dds files to tga. I found imagemagick and DevIL. But both come with problems, because my specifications are as follows:
The library needs to be a 64-bit dll
The library needs to be managed (writing in C#)
DevIL has a wrapper called DevIL.NET, but this is 32-bits. I already tried to build the source in 64-bit, but I was missing a file and the author doesn't seem to respond at the moment.
ImageMagick doesn't seem to support dds formats.
Does anybody know a good library that complies to my requirements?
There is a way to do this but it's a bit painfull.
Humus provides C++ source code for both tga and dds reading and saving ( Download the latest framework ). You need to convert it to C# but this should be possible without any problems ( i did it once too ).
You'll find the code in the Imaging\Image.h and Imaging\Image.cpp.
Direct link to the Code( ZIP ).
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I've found paid components like LeadTools, but the project I'm working is open source, I would like to use free tools.
I need to apply several image correction filters to an image to apply some heuristics to it. .NET Framework lacks this kind of filters, I guess.
I'm not sure if it has all the filters you're looking for, but ImageProcessor is one open source SDK you can check out.
Another option is AForge.Net's framework. Take a look at their filter documentation.
ImageMagick is usually the goto for this sort of thing.
ImageMagick is a free and open-source software suite for displaying, converting, and editing raster image and vector image files. It can read and write over 200 image file formats. ImageMagick is licensed under the Apache 2.0 license. (from wikipedia)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I would like to use a C# .NET diff/comparison library for text files (C++ to be more precise, but it should not matter).
I have found a lot of libraries in the topic but what I need is a something that is part of the .NET library or it comes from Microsoft. The reason of this restriction is that I do not have to go over our company's long open source tool approval process.
Does C# .NET has such feature?
An example for the usage: I have two slightly different .cpp files. I have to create one .cpp file which will have a #ifdef according to the differences of the two files and we can use one file at two places controlled by a predecessor definition.
There is no such built in functionality in any Microsoft .Net library.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I want to represent the chemical structure drawing in my windows application. I found some softwares are available in the market like "BKChem","Metlab","ChemDraw","SMILE (Simplified molecular input line entry specification)","BioChemDraw". but unfortunately i am unable to found any of above's plug in/API's with dot net please let me know. this is very high priority for me for now.
First of all, I'm not at all a .net expert
In the field of chemical structure conversion and drawing, OpenBabel is really the broadest. Unfortunately for you, I only used it from command line, never through API.
BUT, there is a C# API for OpenBabel documented here. And it seams that it can output SVG which is an open drawing standard.
We have written a C# tool for this:
http://chem4word.codeplex.com/
It has been developed over several years and works inside .NET and MS-WORD.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm searching for library that has those features:
- can save and load from wav files, compression to/from Mp3 is an option but not necessary
- give me possibility to change speed, volume and tone of part of audio file
Do you know such open source library that I can use in C# application?
I believe NAudio has all or at least most of those features.
As an alternative to NAudio, you might look into BASS. There is a solid .NET wrapper for it, and plenty of example code to get started for a number of audio tasks.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I've used FileZilla as my favourite FTP application for quite a while, and admire its amazing functionality.
As I'm a programmer myself, I often run into situation where I need FTP support. And then I always find myself wanting to use FileZilla as a base FTP component in my system, because it supports just about everything I need.
My problem is that I program in C#.NET, and thus can't use the FileZilla source code directly, even though it's open source. Even if it was possible to use it directly, I wouldn't know where to start when looking at the source code, since I can't even get it to compile in VS.NET (I try to compile it as C++, of course).
Would it be possible to wrap the FileZilla code in C# using P/Invoke so we would get the best free .NET FTP library in existance?
While you could wrap just about anything, controlling the interface and error conditions is going to be very challenging. I'd recommend you check for a component/library
This class is already in the .NET Framework: http://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest.aspx
This open source apparently supports SFTP: http://sshnet.codeplex.com/
Or there are a few commercials ones: http://www.dart.com/ptftpnet.aspx or http://www.rebex.net/ftp.net/
or a search of stackoverflow reveals lots of .net/FTP related questions: https://stackoverflow.com/search?q=.net+FTP+library