convert

Which is faster, GDI+ or libpng?

I have an HBITMAP and i would like to convert it to png format(in memory i have malloc'd)as fast as possible, so my question is should i go with GDI+ or libpng? I've tried using GDI+, but it doesn't seem as fast as i would like it to be. I've also tried FreeImage and it was way too slow. P.S. - I'm using C++ Thanks for reading ...

Convert a binary string representation to a byte array.

How do you convert a string such as "01110100011001010111001101110100" to a byte array then used File.WriteAllBytes such that the exact binary string is the binary of the file. In this case it would be the the text "test". ...

PHP Convert IPv6 to binary(/memory) representation

Title says it all. I already "did" this for IPv4; $ip = '127.0.0.1'; // example $ip = explode('.',$ip); if( count($ip) != 4 ) $ip = array(0,0,0,0); // wrong ip format, default to 0.0.0.0 return chr($ip[0]) . chr($ip[1]) . chr($ip[2]) . chr($ip[3]); I need to do the above for IPv6 as well. Reading through the IPv6 spec, (I admit I didn...

Excel automatically converts to date?

I have an excel file that always converts k 6-8 to a date. Is there anyway to not make this happen? I have tried making a plain text field to prevent this and still no luck. Any ideas? ...

Convert 12hr date/time string to 24hr datetime

Like other questions asked here, im looking to do a simple conversion of time formats. I've found answers on how to do this in Perl, but not in Python. I have a string like so: on Jun 03, 02010 at 10:22PM and I'd like to convert it to a datetime object like this: Thu, 03 Jun 2010 22:22:00 -0000 I have sliced up my input like so: ...

How to insert a thousand seperator (comma) with convert to double

Morning all I'm being (a) thick and (b) blind. I have the following, tiny bit of code: this.lblSearchResults1.Text = Convert.ToDouble(lblSearchResults1.Text).ToString(); How do I amend this so that I the text includes comma/thousand seperators? i.e. 1,000 instead of 1000. Apologies for the dumb question. ...

convert excel into wiki markup

Hi, Is it possible to convert EXCEL spreadsheets into MEDIAWIKI markup? Stumpled upon strange recommendations exporting to HTML and convert it into markup? Is there a solution maybe exporting to XML first or directly converting it? regards, UP ...

how to convert/import/create a CSV file to excel (xlsx) using C# forms

Hi guys, I am trying to convert CSV file to MS Excel file. one of the issue, is that my CSV file , which I am getting from client, is not well formed. I tried to parse it with different approach but none of them end up with expected results. therefore I had to manually open the CSV file in Excel and save it as .xlsx and then use it for ...

Objective-C can't assign a NSInteger to an NSInteger variable!?

Hey everyone, This is going to seem like a really silly question but I can't figure out why I'm getting an error. I have an instance variable declared as: NSInteger *scopeSelected; I'm using this variable to keep track of what scope has been selected in a UISearchDisplay controller using: - (BOOL)searchDisplayController:(UISearchDi...

Convert .c to .java

Any tools to convert C code into Java code? I am interested in converting this code into Java: ***************************************************************************/ /* ** UNECM - Decoder for ECM (Error Code Modeler) format. ** Version 1.0 ** Copyright (C) 2002 Neill Corlett ** ** This program is free software; you can redistribut...

Converting COM DLL to .NET DLL is Possible?

I have a WIN32 COM DLL. And I want to Convert .NET DLL. Is it possible? Thanks. ...

Convert generic IList<CustomType> to array?

Hello, I have an IList which contains a custom type. One of the properties of that custom type is called ID. How could I convert that without using a for loop? The array should not be of the CustomType, but if the type of ID, which is int. Thanks! ...

Convert Visual Studio 7.1 project to Visual Studio 9 project ?

I have an Asp.Net project in Visual Studio 7.1 , Now when I open it in Visual Studio 2008 , I can't access to project files : How can I open the project with VS2008 or VS2010 ? ...

How to convert webpage to image using c#

how to convert webpage as a image? i have a aspx page display in browser, i need to get the webpage as an image. how to save the webpage as a image pls help... ...

Converting ArrayList of objects to ArrayList of this objects String names in Java

I have an ArrayList of User objects. Now I need the ArrayList of these user's names only. Is there a way to use toString() on entire ArrayList and convert it to ArrayList of String names rather than doing this in for loop? I have also overridden toString in User class so it returns user's name, and I have tried ArrayList <String> names =...

The difference between convert and parse.

Hi I could write the following to convert a object to and integer. Convert.ToInt32(myObject); But i could also write Int.parse(myObject.ToString()); Is there any difference? Which one should I be using? Thanks in advance. ...

not able to convert bigdecimal to string in java

Hi guys, Here is the java code usageType = (String) c.getSrcValue("USAGETYPE"); c is a arraylist. I populate it with this field from DB. "USAGETYPE" NUMBER(*,0), I get the following error java.lang.ClassCastException: java.math.BigDecimal cannot be cast to String Can you please help me out ...

Convert SimpleXML to DOMDocument, not DOMElement

I neeed to convert a SimpleXML object to a DOMDocument, to use it with DOMXPath. I need DOMXPath for it's method registerPHPFunctions. Can this be done? With dom_import_simplexml I get a DOMElement, not DOMDocument. ...

How would I convert this javascript to jquery?

function loaded() { document.addEventListener('touchmove', function(e){ e.preventDefault(); }); myScroll = new iScroll('scroller'); } document.addEventListener('DOMContentLoaded', loaded); If its possible... Thanks :) ...

Java - Convert boolean[] to decimal

Hey, A boolean array can be considered to be a binary number e.g. boolean[] four = {true, false, false}; //100 I would like to convert such an array to its decimal equivalent e.g. int decimal = convertBooleanArrayToDecimal(four); //decimal == 4 How can I do so? Cheers, Pete ...