Questions tagged [libiconv]
81 questions
0
votes
1 answer
libiconv-2.dll error while playing video in OpenCV
I tried to play a video using OpenCV-2.4.7 in Visual Studio 2010, Win 7
Code is as follow-
#include
#include
using namespace cv;
int main( int argc, char** argv ) {
cvNamedWindow( "Window", CV_WINDOW_AUTOSIZE…

Gaurav Sharma
- 1
- 1
0
votes
3 answers
Need to convert 16 bit data to 8 bit
int main()
{
char str[200] = {0};
char out[500] = {0};
str[0]=0x00; str[1]=0x52; str[2]=0x00; str[3]=0x65; str[4]=0x00; str[5]=0x73; str[6]= 0x00; str[7]=0x74;
for(int i=0;i

user2843171
- 43
- 6
0
votes
1 answer
libiconv conundrum: requires version x.0.0 or later but libiconv.2.dylib provides version y.0.0
I am stuck in a libiconv problem.
Environment:
Mac OSX Lion / MacBook air
Issue:
I tried to install a php extention for international management (intl). During the process, something got wrong. I had to reinstall MacOSX Lion from the utility of…

user2642026
- 1
- 2
0
votes
1 answer
linux libiconv transcode from ISO8859 or IBM850 to UTF8 error
I don't know what the original code is, so I assume that the original code is IBM850 or ISO8859-1.My process below
IBM850 -> UTF8
if this is OK, I consider the original code is IBM850, if NOK,do next step:
ISO8859-1 -> UTF8
if this is OK, I…

Skyline
- 53
- 4
-1
votes
2 answers
download xcode15beta and build errror
I downloaded xcode15 beta, and then run the project and reported an error, but I did not report an error when I ran it with xcode14.3.
the error info is:
Library 'iconv.2.4.0' not found
Linker command failed with exit code 1 (use -v to see…

user7021848
- 1
- 2
-1
votes
1 answer
Compare HTML from libcurl with text from file
I'm using libcurl to connect to a website, and getting the HTML, I'm also using LibTidy to extract the text. My purpose is to verify if a sentence from a text file is inside the HTML.
Thanks to LibTidy I have all the text file as one char*.
I'm…

axel7083
- 571
- 3
- 16