Skip to main content
You're supposed to edit the question with relevant information.
Source Link
sweenish
  • 5.3k
  • 3
  • 15
  • 29

EDIT: SO refuses to let me comment, so I had to edit the question. Magick'sMagick's cmd tools work just fine, both the installed and the portable versions. I know this question is way too big, but to be fair I don't know what's relevant to solve this issue. The repository is there for if someone finds it useful to the issue, I don't expect anyone to actually clone it.

EDIT: SO refuses to let me comment, so I had to edit the question. Magick's cmd tools work just fine, both the installed and the portable versions. I know this question is way too big, but to be fair I don't know what's relevant to solve this issue. The repository is there for if someone finds it useful to the issue, I don't expect anyone to actually clone it.

EDIT: Magick's cmd tools work just fine, both the installed and the portable versions. I know this question is way too big, but to be fair I don't know what's relevant to solve this issue. The repository is there for if someone finds it useful to the issue, I don't expect anyone to actually clone it.

added 367 characters in body
Source Link

EDIT: SO refuses to let me comment, so I had to edit the question. Magick's cmd tools work just fine, both the installed and the portable versions. I know this question is way too big, but to be fair I don't know what's relevant to solve this issue. The repository is there for if someone finds it useful to the issue, I don't expect anyone to actually clone it.

EDIT: SO refuses to let me comment, so I had to edit the question. Magick's cmd tools work just fine, both the installed and the portable versions. I know this question is way too big, but to be fair I don't know what's relevant to solve this issue. The repository is there for if someone finds it useful to the issue, I don't expect anyone to actually clone it.

Add Console App code example
Source Link

I created a C++ Console App to debug better, and it gets stuck on the read() call, but throws nothing, and the output console on Visual Studio shows no error. If I use a random path of a file that does not exist, same thing happens.

#include <Windows.h>
#include <Magick++.h>

int main(int argc, char** argv)
{
    Magick::InitializeMagick(*argv);
    Magick::Image magickImage;

    try {
        magickImage.read("G:\\test\\test.jpg");
    }
    catch (std::exception &ex){
        return E_FAIL;
    }
    return S_OK;
}

I created a C++ Console App to debug better, and it gets stuck on the read() call, but throws nothing, and the output console on Visual Studio shows no error. If I use a random path of a file that does not exist, same thing happens.

#include <Windows.h>
#include <Magick++.h>

int main(int argc, char** argv)
{
    Magick::InitializeMagick(*argv);
    Magick::Image magickImage;

    try {
        magickImage.read("G:\\test\\test.jpg");
    }
    catch (std::exception &ex){
        return E_FAIL;
    }
    return S_OK;
}
removed `findstr` piece for consistency with the paragraph's text
Source Link
Loading
Source Link
Loading