0

私は C でプログラミングしています。ImageMagick ライブラリを使用したいのですが、一部の機能が解決できません。

これは私の cMakeList.txt ファイルです:

cmake_minimum_required(VERSION 3.3)
project(WebServer)

set(CMAKE_C_COMPILER "/usr/bin/gcc")

set(SOURCE_FILES io.c server.c lock_fcntl.c sig_handler.c thread_job.c    msg_parser.c)
set(LIB http-parser-master/http_parser.c )

set(CMAKE_USE_PTHREADS_INIT true)
set(CMAKE_USE_PTHREADS_INIT ON)

find_package(Threads REQUIRED)
find_package(ImageMagick COMPONENTS ImageWand)

include_directories(header)
include_directories(http-parser-master)

#include_directories(/usr/local/include/ImageMagick-7/MagickWand)
include_directories(${ImageMagick_INCLUDE_DIRS})

add_executable(server ${SOURCE_FILES} ${LIB})
add_executable(client client.c io.c)
add_executable(main main.c io.c)

target_link_libraries(main ${ImageMagick_LIBRARIES})
target_link_libraries(server Threads::Threads)

これはソースのmain.cです:

#include <ImageMagick-7/MagickWand/MagickWand.h>
#include "basic.h"

void convert_image(char *path, float quality_factor, char *out) {

    int width, height;
    MagickWand *n_wand = NULL;

    MagickWandGenesis();

    m_wand = (struct MagickWand *) NewMagickWand();


    MagickReadImage(m_wand,"logo:");

    width = MagickGetImageWidth(m_wand);
    height = MagickGetImageHeight(m_wand);

    if((width /= 2) < 1)width = 1;
    if((height /= 2) < 1)height = 1;

    MagickResizeImage(m_wand,width,height,LanczosFilter,1);

    MagickSetImageCompressionQuality(m_wand,95);

    MagickWriteImage(m_wand,"logo_resize.jpg");

   if(m_wand)m_wand = (struct MagickWand *) DestroyMagickWand(m_wand);

    MagickWandTerminus();
}

MagickWandGenesis()とのみMagickWandTerminus()が解決されます。ライブラリのインストールは正常に終了します。の解き方?

編集:

実行すると、次のエラーが表示されます。

/usr/local/include/ImageMagick-7/MagickWand/MagickWand.h:29:40: fatal     error: MagickCore/magick-config.h: File o directory non esistente
 #  include "MagickCore/magick-config.h"
                                    ^
compilation terminated.
make[3]: *** [CMakeFiles/main.dir/main.c.o] Errore 1
make[2]: *** [CMakeFiles/main.dir/all] Errore 2
make[1]: *** [CMakeFiles/main.dir/rule] Errore 2
make: *** [main] Errore 2

ここに示す解決策を試しましたが、うまくいきませ ん: ImageMagick そのようなファイルまたはディレクトリはありません

4

1 に答える 1

1

ライブラリ構造は次のとおりです。

ImageMagick-7
    ├── MagickCore
    │   ├── magick-config.h
    |
    └── MagickWand
        ├── MagickWand.h

MagickWand.hMagickCore にいくつかのヘッダーが含まれています。に置き換えて修正include_directories(${ImageMagick_INCLUDE_DIRS})include_directories(/usr/local/include/ImageMagick-7)ます。理由はわかりませんが、印刷${ImageMagick_INCLUDE_DIRS}すると設定されません。

于 2016-09-07T18:35:06.837 に答える