convert

how to convert rtf to image format ( jpg/png..)

i need to convert rtf document that contains images (jpgs/pngs ) to image format jpgs or pngs programmaticly , do you have any ideas on how to do it ? on server side (web) Thanks ...

Regex to match links that arent already marked up

I'm trying to write a regex to automatically find urls, so that I can turn them into marked up a hrefs. The issue I'm having is dealing with urls that have already been marked up (The documents contain a mix of marked up and not marked up urls). So basically my problem comes down to this: I want to match any URL that isn't already enc...

Pass a Layer object to an other class. How can i convert? Objective C

Hi, I have a .h file called LayerManagement.h, it defines a Layer variable: Layer *managelayer; I have a Layer class called HelloLayer, it defines: +(id) scene { Scene *scene = [Scene node]; HelloLayer *thislayer = [HelloLayer node]; man = [[ManageMove alloc] init]; > man.managelayer = thislayer;// can i do...

How to convert this SQL statement to LINQ?

I have no idea how to convert this SQL statement to LINQ that uses OUTER APPLY and TOP. Can somebody give an idea how deal with it. Thanks! SELECT Cust.CustomerName, Ord.OnlineOrderTitle, Pro.ProductTitle, Pic.PictureFilename, PCom.PictureCommentText, Ord.OnlineOrderDateAdded FROM Customer as Cust OUTER APPLY (SELECT * FROM OnlineO...

MySQL Blob to Text (data and datatype)

Hi, I have a mysql database that holds content as a blob, for whatever reason those developers chose to use a blob is out of my control. Is it possible to convert the data to text and the data type to text? ...

How can I convert eps to jpg?

how can i convert eps image to jpg/png. any good application you can suggest. ...

Convert wav to mp3 with Lame.exe - ProgressBar?

Hi, I'm doing some converting of wav-files to mp3 and I use lame.exe. Now, when using "lame.exe sourcefile.wav endfile.mp3" in cmd it works great and shows it's own progressbar. But is it possible to have my own progressbar inside my application form to show it's progress? Because when using the command from my application, it just conve...

How can I convert PDF to HTML?

What good libraries are there, in any common language, for converting PDF to HTML? ...

Convert .m4r/.mp3 to .caf/.aiff in iphone app

Hello, As of right now I am using ffmpeg to convert from .mp3 --> to .aiff but I would like a native way to do this in xcode but i do not understand how to use AudioConverter.h in AudioToolbox soo if someone could please help me I would be really appreciative. Thank You Enea ...

How to convert 'const wchar*' to 'const char*' on Mac OS X?

Hello, Is there a elegant way to convert 'const wchar *' to 'const char *' on Mac OS X? Kat ...

SQL scheme conversion script for MySQL, PostgreSQL, SQLite …

I’m looking for a script that allows me to define my database relations in a simple model file and have the possibility to convert this scheme definition to the explicit formats for MySQL, PostgreSQL and SQLite. The format could be similar to the definitions you would do in activerecord, so if all fails, I will somehow go with AR if I ca...

Subversion python bindings could not be loaded

This is a but of a part 2 in trying to convert an SVN repository to a Mercurial one command is: hg convert file://c:/svnrepository but, the output I get is: assuming destination svnrepository-hg initializing destination svnrepository-hg repository file://c:/svnrepository does not look like a CVS checkout file://c:/svnrepository does...

Ghostscript ERROR: /undefined in --get--

I'm trying to use Ghostscript in CentOS. When trying to issue the following Ghostscript command ghostscript -sDEVICE=pcx256 -r150x150 -sOutputFile=OUTPUT_FILE INPUT_PDF I am getting the following error: ESP Ghostscript 815.02 (2006-04-19) Copyright (C) 2004 artofcode LLC, Benicia, CA. All rights reserved. This software comes w...

Bytes to Binary in C

Hello, I'm trying to simply convert a byte received from fget into binary. I know the value of the first byte was 49 based on printing the value. I now need to convert this into its binary value. unsigned char byte = 49;// Read from file unsigned char mask = 1; // Bit mask unsigned char bits[8]; // Extract the bits for (int i = 0; ...

How to convert numbers to words in Erlang?

I found this interesting question about converting numbers into "words": http://stackoverflow.com/questions/309884/code-golf-number-to-words I would really like to see how you would implement this efficiently in Erlang. ...

converting java projects to c# with visual studio 2010

hello, i remember that previous versions of visual studio contained a converter, that automatically attempt to convert java projects to the corresponding c# code. however in visual studio 2010 beta 2 i cant find this anymore? has it been removed? thanks! ...

What is the best way to convert Bytes to Cardinal and vice versa

I have The following code for now. type TByte4 = array[0..3] of Byte; // 32-bit function CardinalToBytes(const Data: Cardinal): TByte4; begin Result[0] := (Data shr 24) and 255; Result[1] := (Data shr 16) and 255; Result[2] := (Data shr 8) and 255; Result[3] := Data and 255; end; function BytesToCardinal(const Data: TByte4):...

Javascript to Jscript ??

I need help with this... I've found a javascript app online in which I want to insert into powerpoint for a presentation... Vb support jscript Can i convert Javascript to Jscript some how? or can someone help me with it.... If wanted just ask for code or site ...

HTML > PDF with PHP?

How can i convert a html page (via $curl or something) to a pdf file? ...

Mysql: latin1-> utf8. Convert characters to their multibyte equivalents

There was a table in latin1 and site in cp1252 I want to have table in utf8 and site in utf-8 I've done: 1) on web page: Content-Type: text/html;charset=utf-8 2) Mysql: ALTER TABLE XXX CONVERT TO CHARACTER SET utf8 _ This SQL doesn't work as I want - it doesn't convert ä & ü characters in database to their multibyte equivalents Pl...