active questions tagged convert - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:37:21Z http://stackoverflow.com/feeds/tag/convert http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1817032/how-to-add-glowing-outline-around-object-stored-in-transparent-png -1 How to add glowing outline around object stored in transparent png ? Kamil Szot 2009-11-29T22:40:13Z 2009-11-29T22:48:04Z <p>I have 32-bit png with transparency. Image contains object on transparent background. Object might be semi transparent. </p> <p>I want to use <strong>ImageMagick</strong> to add glowing outline around the object. Color of the outline should be customizable. </p> <p>Outline should have transparency 20% near the object dropping to 100% transparency far away from the object.</p> <p>I want to achieve effect similar to visible here <a href="http://img2.photographersdirect.com/img/15324/wm/pd821076.jpg" rel="nofollow">http://img2.photographersdirect.com/img/15324/wm/pd821076.jpg</a> given that I have transparent png with blue Australia and the jpeg for background.</p> http://stackoverflow.com/questions/1378023/function-to-take-array-of-arbitrary-type-in-c 1 function to take array of arbitrary type in c# Martin 2009-09-04T08:46:28Z 2009-11-29T15:00:03Z <p>I've made a function that processes an array of objects, process(Object[]). It works on any type including integers and floats so long as you box each element first. I'd like the function to take unboxed elements aswell, if only to box it itself before processing. How do I do that?</p> <p>I could wrap with a few functions like process(int[]) and process(float[]) but that also seems a hassle. I've tried process(ValueType[]) but the compiler still selects process(Object[]).</p> <p>I have C# 2.0, but if there is a nice solution for 3.0 I'd like to see it.</p> http://stackoverflow.com/questions/1814589/php-convert-date-to-datetime 0 php convert date to datetime duckofrubber 2009-11-29T03:50:35Z 2009-11-29T03:54:33Z <p>hi, </p> <p>i need to convert a date in this format:</p> <p>November 28, 2009</p> <p>to a mysql date format:</p> <p>2009-28-11</p> <p>what's the best method to convert the date using php?></p> <p>thanks.</p> http://stackoverflow.com/questions/1806126/php-printr-to-as3-array-conversion 0 PHP Print_r to AS3 Array conversion Andy Moore 2009-11-26T23:36:12Z 2009-11-26T23:50:09Z <p>I find myself frequently outputting PHP Array data into AS3 applications and I'm always having to do it the hard way - comma delimated, base-64 converted data with custom packers/unpackers on either end.</p> <p>I'd really like an AS3 function that takes the default output of PHP's print_r and converts it to a (potentially nested) AS3 array. Is there any easy way to do this?</p> <p>Sample Print_r output:</p> <pre><code>Array ( [0] =&gt; Array ( [0] =&gt; 6 [1] =&gt; Test #1 of the video creation system [2] =&gt; Short summary of test #1 ) [1] =&gt; Array ( [0] =&gt; 7 [1] =&gt; Tone [2] =&gt; Bar and Tone to warp the mind ) ) </code></pre> http://stackoverflow.com/questions/1791270/i-need-to-convert-a-returned-number-in-a-report-with-text 0 I need to convert a returned number in a report with text? jason 2009-11-24T16:37:02Z 2009-11-26T03:32:57Z <p>I have a value in a report that is returned as a number for example 1 - What i am trying to do is whenever 1 is displayed in the report i want it to show text such as Program Live.</p> <p>I am using crystal 9, any help would be appreciated.</p> http://stackoverflow.com/questions/1597754/convert-utc-string-to-tdatetime-in-delphi 0 Convert UTC string to TDatetime in Delphi Irwan 2009-10-20T22:54:07Z 2009-11-25T21:28:50Z <p>eg. var tm : string; dt : tdatetime;</p> <p>tm := '2009-08-21T09:11:21Z'; dt := ?</p> <p>I know I can parse it manually but I wonder if there is built-in function or win32 api function to do this ?</p> <p>Any help would be appreciated.</p> http://stackoverflow.com/questions/1745600/condensing-stock-data 0 Condensing Stock Data Andrew 2009-11-16T23:37:57Z 2009-11-25T13:02:33Z <p>I have a data set that is composed as such:</p> <pre><code>2009,11,01,17,00,23,1.471700,1.472000 2009,11,01,17,01,04,1.471600,1.471900 2009,11,01,17,01,09,1.471900,1.472100 2009,11,01,17,01,12,1.472000,1.472300 2009,11,01,17,01,13,1.471900,1.472200 2009,11,01,17,01,14,1.471600,1.471900 2009,11,01,17,01,18,1.471700,1.472000 2009,11,01,17,01,18,1.471900,1.472200 </code></pre> <p>I am using Octave to manipulate this data. I would like to use this tick data to create various files containing the data in 5, 10. and 30 minute intervals. With this format they could be plotted as a bar/candlestick chart and further calculations performed. However, I don't really have any idea how to approach the looping over the data to create such files.</p> <p>I am familiar with Octave and use this software, but this particular task could be undertaken in some other software to produce files for later import into Octave. </p> <p>My first attempt to code this in Octave gives this error:-</p> <p>error: A(I,J,...) = X: dimensions mismatch error: called from: error: /home/andrew/Documents/forex_convert/tick_to_min.m at line 105, column 25</p> <p>The code that produces it is</p> <p>[i,j]=find(fMM>=45 &amp; fMM&lt;50);</p> <p>min_5_vec(1:length(i),1)=tick_data(min(i):max(i),1); % line 105</p> <p>The code checks the "minutes" vector fMM and should extract and create a new "min_5_vec" vector containing all tick data that occurred between the times HH:45:00 and HH:49:59 for every hour. The thing is this code, which is part of a function, appears to fail only on this particular line which I find very strange as it has been copied and pasted and only the figures 45 and 50 have been changed, and the other similar parts of the function code up to line 105 do not fail. I have visually checked the raw data and can see no cause for the nature of the data to be the reason for the failure. Any suggestions for the possible cause of the failure? </p> http://stackoverflow.com/questions/1792602/what-is-the-fool-proof-way-to-convert-some-string-utf-8-or-else-to-a-simple-asc 2 What is the fool proof way to convert some string (utf-8 or else) to a simple ASCII string in python noam 2009-11-24T20:08:18Z 2009-11-25T00:19:45Z <p>Inside my python scrip, I get some string back from a function which I didn't write. The encoding of it varies. I need to convert it to ascii format. Is there some fool-proof way of doing this? I don't mind replacing the non-ascii chars with blanks or something else...</p> http://stackoverflow.com/questions/321370/convert-hex-string-to-byte-array 0 Convert hex string to byte array Blankman 2008-11-26T16:45:53Z 2009-11-24T18:05:14Z <p>Hi,</p> <p>Can we converting a hex string to a byte array using a built-in function in C# or I have to make a custom method for this?</p> http://stackoverflow.com/questions/1714629/mysql-latin1-utf8-convert-characters-to-their-multibyte-equivalents 0 Mysql: latin1-> utf8. Convert characters to their multibyte equivalents Dan 2009-11-11T11:34:27Z 2009-11-23T20:48:52Z <p>There was a table in <strong>latin1</strong> and site in <strong>cp1252</strong> I want to have table in <strong>utf8</strong> and site in <strong>utf-8</strong></p> <p>I've done:</p> <p>1) on web page: <code>Content-Type: text/html;charset=utf-8</code></p> <p>2) Mysql: <code>ALTER TABLE XXX CONVERT TO CHARACTER SET utf8</code></p> <p>_</p> <p><strong>This SQL doesn't work as I want</strong> - it doesn't convert <strong>ä</strong> &amp; <strong>ü</strong> characters in database to their multibyte equivalents</p> <p>Please Help. Tanks</p> http://stackoverflow.com/questions/1638937/how-can-i-convert-pdf-to-html 5 How can I convert PDF to HTML? unknown (google) 2009-10-28T17:52:54Z 2009-11-23T17:47:52Z <p>What good libraries are there, in any common language, for converting PDF to HTML?</p> http://stackoverflow.com/questions/288900/how-can-i-convert-a-string-to-a-number-in-perl 2 How can I convert a string to a number in Perl? Anton 2008-11-14T00:39:16Z 2009-11-23T00:33:04Z <p>How would I convert a string holding a number into an integer in Perl?</p> http://stackoverflow.com/questions/1777767/python2-x-to-3-x-conversion 1 Python2.x to 3.x conversion Nimbuz 2009-11-22T03:57:21Z 2009-11-22T23:04:04Z <p>Is there any tool available to automatically convert Python 2.x scripts to Python 3.x? Or do you still have to convert it manually? 2.x-3.x auto-converter would be really helpful (to everyone else too, I guess).</p> <p>Ofcourse I'm not looking to convert large programs, just about 8-10 modules.</p> <p>Thanks</p> http://stackoverflow.com/questions/1597709/convert-a-string-with-a-hex-representation-of-an-ieee-754-double-into-javascript 4 Convert a string with a hex representation of an IEEE-754 double into JavaScript numeric variable Nosredna 2009-10-20T22:37:30Z 2009-11-22T08:29:48Z <p>Suppose I have a hex number "4072508200000000" and I want the floating point number that it represents (293.03173828125000) in IEEE-754 double format to be put into a JavaScript variable.</p> <p>I can think of a way that uses some masking and a call to pow(), but is there a simpler solution?</p> <p>A client-side solution is needed.</p> <p>This may help. It's a website that lets you enter a hex encoding of an IEEE-754 and get an analysis of mantissa and exponent.</p> <p><a href="http://babbage.cs.qc.edu/IEEE-754/64bit.html" rel="nofollow">http://babbage.cs.qc.edu/IEEE-754/64bit.html</a></p> <p>Because people always tend to ask "why?," here's why: I'm trying to fill out an existing but incomplete implementation of Google's Procol Buffers (protobuf).</p> http://stackoverflow.com/questions/1777625/tutorial-for-converting-php-applications-to-cocoa 1 Tutorial for converting PHP applications to Cocoa? Kaji 2009-11-22T02:29:05Z 2009-11-22T03:43:51Z <p>I do a lot of coding in PHP and MySQL, but I'm looking at moving my applications to a desktop environment in order to allow users to access the data offline, and periodically receive updates from a central online database.</p> <p>For the time being, however, I'm looking for a decent tutorial on how to convert PHP applications to Cocoa, and how to store the data I currently have in MySQL in a fashion that will be usable by the application. Does anyone know of a good starting place?</p> http://stackoverflow.com/questions/1759250/how-do-i-convert-a-mysql-function-result-to-tinyint1 1 How do I convert a MySQL function result to tinyint(1) Kasey Speakman 2009-11-18T21:37:48Z 2009-11-20T15:39:40Z <p>Here's the problem. In MySQL's Connector/NET a TINYINT(1) field properly translates back and forth into a .NET bool value. If I select from a table with a TINYINT(1) column, everything is golden. However, when you use built-in MySQL v5.0 functions like:</p> <pre><code>SELECT (3 BETWEEN 2 AND 4) AS oddly_not_boolean; </code></pre> <p>The actual return type from the database registers this field as INT or BIGINT, which Connector/.NET obviously doesn't convert to bool. MySQL CAST and CONVERT do not allow casting to TINYINT(1).</p> <p>I've even gone so far as to try a user function to do this, but this doesn't work either:</p> <pre><code>CREATE FUNCTION `to_bool`(var_num BIGINT) RETURNS TINYINT(1) RETURN var_num; </code></pre> <p>How do I convert an INT to a TINYINT(1) in a query in MySQL?</p> <p>EDIT: The above function DOES actually work to convert the value to a TINYINT(1), but my Connector/NET is just bugged and doesn't properly convert the values from functions.</p> <p>UPDATE 2009-11-03: Updated my connector and it's still giving me back Int32. Further testing reveals that this is an <a href="http://bugs.mysql.com/bug.php?id=48889" rel="nofollow">InnoDB bug</a> in MySQL 5.0.x that only shows under specific circumstances.</p> http://stackoverflow.com/questions/1770594/how-to-calculate-difference-in-hours-decimal-between-two-dates-in-sql-server 0 How to calculate difference in hours (decimal) between two dates in SQL Server? Marc 2009-11-20T14:01:17Z 2009-11-20T14:32:35Z <p>I have to calculate the difference in hours (decimal type) between two dates in SQL Server 2008.</p> <p>I couldn't find any useful technique to convert datetime to decimal with 'CONVERT' on MSDN. <br />Can anybody help me with that?</p> <p>UPDATE:<br /> To be clear, I need the fractional part as well (thus decimal type). So from 9:00 to 10:30 it should return me 1.5.</p> http://stackoverflow.com/questions/1759882/converting-from-prototype-to-jquery-javascript-ajax 0 Converting from prototype to jQuery - javascript / ajax Joseph Brown 2009-11-18T23:32:32Z 2009-11-18T23:53:38Z <p>I'm looking for some help converting this from prototype to jQuery. I'm doing some free work for a charity and updating a system they use to track and assign volunteers. I've managed to convert everything else so far, however, this has me stumped. Please excuse the spelling mistakes, the code is verbatim what I've been given. </p> <p>I've had a look at <a href="http://docs.jquery.com/Ajax/jQuery.ajax" rel="nofollow">http://docs.jquery.com/Ajax/jQuery.ajax</a> but not been able to put everything together that covers all the different parts. Normally just end up with some sort of broken mess. </p> <p>I have a page with lots of checkboxes, like this:</p> <pre><code>&lt;input &lt;?PHP echo $checked; ?&gt; type='checkbox' onclick='toggle_advisor_assignment_mark("&lt;?PHP echo $advisor['id']; ?&gt;", "&lt;?PHP echo x('case_id'); ?&gt;");' /&gt; </code></pre> <p>When checked or unchecked (as the case may be), ajax is used to call the php which uses the advisor id and case id to assign or remove the advisor/volunteer, and it returns the output for a div (called adviors_box) to list the current advisors/volunteer. </p> <p>The javascript code:</p> <pre><code>function toggle_advisor_assignment_mark(id, case_id) { new Ajax.Updater('adviors_box', 'index.php', { evalScripts: true, method: 'POST', parameters: 'task=case_change_advisors&amp;ajax_mode=yes&amp;id='+id+'&amp;case_id='+case_id }); } </code></pre> <p>Thanks in advance for any help. </p> http://stackoverflow.com/questions/1739383/convert-seconds-integer-to-hhmm-iphone 0 Convert Seconds Integer To HH:MM, iPhone Stumf 2009-11-16T00:03:21Z 2009-11-18T23:20:20Z <p>Hi there,</p> <p>I am struggling with this. I have a value in seconds that I want to display in a label in HH:MM format. I have searched the internet for ages and found some answers, but either not fully understood them, or they seem like an odd way of doing what I want. If someone could help me out on this one that would be great! Bear in mind that I am new to this games so this question may seem like a really basic one to the more experienced out there.</p> http://stackoverflow.com/questions/1742624/how-to-convert-mysql-field-types 0 How to convert MySQL field types? pythonBOI 2009-11-16T14:49:37Z 2009-11-18T21:21:58Z <p>I have already come across the convert funtion. As I understand it, the basic syntax is:</p> <pre><code>select convert(columnName, targetFieldType) as newColumnName from table; </code></pre> <p>Running this command doesn't give me any errors, but when I check the data types they are unchanged. Even when I use commit; the data remains unchanged. In particular, I'm trying to convert data with long type to varchar. Any ideas?</p> http://stackoverflow.com/questions/1752701/how-to-convert-nsinteger-to-int 2 How to convert NSInteger to int Jeffrey 2009-11-17T23:50:16Z 2009-11-18T02:39:29Z <p>hi,</p> <p>e.g. NSInteger called a</p> <p>[a value] is a EXC_BAD_ACCESS</p> <p>how to convert NSInteger to int ?</p> <p>(only small numbers &lt; 32 are used)</p> http://stackoverflow.com/questions/1748657/convert-currency-from-xml-php 0 convert currency from xml + php artmania 2009-11-17T12:52:17Z 2009-11-17T13:06:48Z <p>Hi friends,</p> <p>I have an xml source for daily currency <a href="http://www.tcmb.gov.tr/kurlar/today.xml" rel="nofollow">http://www.tcmb.gov.tr/kurlar/today.xml</a></p> <p>and i need to make a currency optional search for a portal. how can I get a specific data and convert from xml source? :/</p> <p>i have a search form with:</p> <ul> <li>price input</li> <li>currency list box (euro, dollar)</li> </ul> <p>and I need to convert the value from form for products price currency.</p> <p>Appreciate helps!! thanks!!!</p> http://stackoverflow.com/questions/1065097/how-to-convert-a-rdl-to-rdlc-file-with-a-different-schema 1 How to convert a RDL to RDLC file with a different schema? avgbody 2009-06-30T18:02:58Z 2009-11-17T10:24:45Z <p>I'm using Sql Server Reporting Services (SSRS) 2008 to create RDL files, but also need to create a RDLC file. The problem is that SSRS 2008 uses a 2008 schema, while Visual Studio 2008 uses the 2005 schema.</p> <p><strong><em>Is there a tool or work around for this solution?</em></strong></p> <p>Note: I'm not using tablix, so that should not be a problem.</p> http://stackoverflow.com/questions/1745845/get-video-dimension-in-c 0 Get video dimension in C# unknown (yahoo) 2009-11-17T00:33:10Z 2009-11-17T00:40:42Z <p>I'm working on asp.net using C#. My problem is I can use command line program to convert those video but I don't know how to get the dimension of the video to decide the bitrate of video.</p> <p>Plz help me out of this problem.</p> http://stackoverflow.com/questions/1720644/how-to-determine-whether-an-object-can-be-convert-to-meaningful-string-in-c 2 How to determine whether an object can be convert to meaningful string in C# Wayne 2009-11-12T08:03:53Z 2009-11-12T08:40:20Z <p>Hi all, I need to determine whether the ToString() method of an object will return a meaningful string instead of its class name. For example, bool, int, float, Enum, etc. returns meaningful string, instead an instance of ArrayList will return "System.Collections.ArrayList". If there a simple way to archive that?</p> <p>Thanks in advance.</p> <p>Regards, Wayne</p> http://stackoverflow.com/questions/1202935/convert-rows-from-a-data-reader-into-typed-results 4 Convert rows from a data reader into typed results Anthony 2009-07-29T20:46:40Z 2009-11-11T17:06:28Z <p>I'm using a third party library which returns a data reader. I would like a simple way and as generic as possible to convert it into a List of objects.<br /> For example, say I have a class 'Employee' with 2 properties EmployeeId and Name, I would like the data reader (which contains a list of employees) to be converted into List&lt; Employee>.<br /> I guess I have no choice but to iterate though the rows of the data reader and for each of them convert them into an Employee object that I will add to the List. Any better solution? I'm using C# 3.5 and ideally I would like it to be as generic as possible so that it works with any classes (the field names in the DataReader match the property names of the various objects).</p> http://stackoverflow.com/questions/886144/any-tools-libraries-to-convert-ppt-and-pdf-files-to-flash-swf-on-server-side 2 Any tools/libraries to convert ppt and pdf files to flash swf on server side? wei 2009-05-20T04:36:19Z 2009-11-11T07:59:16Z <p>Hi, I'm building a pet project which needs to convert pdf and ppt files to flash swf files on the server side. This should look similar to what Scribd, Docstoc or Slideshare these websites do. But after some googling, I couldn't find any open source tools or libraries to do this except the OpenOffice wrapper. So I'm wondering how those websites do it or maybe there are some tools/libraries I don't know?</p> <p>Thanks,</p> <p>Wei</p> http://stackoverflow.com/questions/439301/convert-rtf-to-html 2 Convert Rtf to HTML Aaron Smith 2009-01-13T15:16:40Z 2009-11-10T18:33:48Z <p>Are there any libraries around that can convert Rtf to HTML. We have a crystal report that we need to send out as an e-mail, but the HTML generated from the crystal report is pretty much just plain ugly and causes issues with some e-mail clients. I wanted to export it as rich text and convert that to HTML if it's possible.</p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1684431/how-to-convert-numbers-to-words-in-erlang 2 How to convert numbers to words in Erlang? Roberto Aloi 2009-11-05T23:38:00Z 2009-11-10T11:07:46Z <p>I found this interesting question about converting numbers into "words":</p> <p><a href="http://stackoverflow.com/questions/309884/code-golf-number-to-words">http://stackoverflow.com/questions/309884/code-golf-number-to-words</a></p> <p>I would really like to see how you would implement this efficiently in Erlang.</p> http://stackoverflow.com/questions/1702834/html-pdf-with-php 0 HTML > PDF with PHP? tarnfeld 2009-11-09T18:28:30Z 2009-11-09T18:39:18Z <p>How can i convert a html page (via $curl or something) to a pdf file?</p>