2013-06-28 7 views
4

Linux에서 PHP와 Imagick을 사용하여 SVG 형식의 이미지를 WMF로 변환하려고합니다. 이미지를 SVG에서 PNG로 성공적으로 변환 할 수 있지만 SVG에서 WMF로 변환 할 수는 없습니다. 나는 PHP 오류를 그냥 NULL 이미지를 얻을. ImageMagick 'convert'명령을 사용할 때 다음 오류가 발생하기 때문에 설치/구성 문제가있을 수 있습니다. Imagemagick을 사용하여 SVG를 WMF로 변환 할 수 없습니다.

> convert image.svg image.wmf 
convert: no encode delegate for this image format `image.wmf' @ constitute.c/WriteImage/1114. 

그러나, WMF 대표는 correclty

> convert -list configure 
Path: /usr/lib64/ImageMagick-6.5.4/config/configure.xml 
Name   Value 
------------------------------------------------------------------------------- 
CC   gcc -std=gnu99 
CFLAGS  -fopenmp -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wall -W -pthread 
CONFIGURE  ./configure '--build=x86_64-redhat-linux-gnu' '--host=x86_64-redhat-linux-gnu' '--target=x86_64-redhat-linux-gnu' '--program-prefix=' '--prefix=/usr' '--exec-prefix=/usr' '--bindir=/usr/bin' '--sbindir=/usr/sbin' '--sysconfdir=/etc' '--datadir=/usr/share' '--includedir=/usr/include' '--libdir=/usr/lib64' '--libexecdir=/usr/libexec' '--localstatedir=/var' '--sharedstatedir=/var/lib' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--enable-shared' '--disable-static' '--with-modules' '--with-perl' '--with-x' '--with-threads' '--with-magick_plus_plus' '--with-gslib' '--with-wmf' '--with-lcms' '--with-rsvg' '--with-xml' '--with-perl-options=INSTALLDIRS=vendor CC='\''gcc -L/builddir/build/BUILD/ImageMagick-6.5.4-7/magick/.libs'\'' LDDLFLAGS='\''-shared -L/builddir/build/BUILD/ImageMagick-6.5.4-7/magick/.libs'\''' '--without-dps' '--without-included-ltdl' '--with-ltdl-include=/usr/include' '--with-ltdl-lib=/usr/lib64' 'build_alias=x86_64-redhat-linux-gnu' 'host_alias=x86_64-redhat-linux-gnu' 'target_alias=x86_64-redhat-linux-gnu' 'CFLAGS=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic' 'CXXFLAGS=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic' 
COPYRIGHT  Copyright (C) 1999-2009 ImageMagick Studio LLC 
CPPFLAGS  -I/usr/include/ImageMagick 
CXX   g++ 
CXXFLAGS  -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -Wall -W -pthread 
DEFS   -DHAVE_CONFIG_H 
DELEGATES  bzlib fontconfig freetype gs jpeg jng jp2 lcms png rsvg tiff x11 xml wmf zlib 
DISTCHECK_CONFIG_FLAGS 'CFLAGS=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic' --disable-deprecated --with-quantum-depth=16 --with-umem=no --with-autotrace=no --with-dps=no --with-fontpath= 
EXEC-PREFIX /usr 
HOST   x86_64-redhat-linux-gnu 
LDFLAGS  -L/usr/lib64 -lfreetype 
LIB_VERSION 0x654 
LIB_VERSION_NUMBER 6,5,4,7 
LIBS   -lMagickCore -llcms -ltiff -lfreetype -ljpeg -lfontconfig -lXext -lSM -lICE -lX11 -lXt -lbz2 -lz -lm -lgomp -lpthread -lltdl 
NAME   ImageMagick 
PCFLAGS  -fopenmp 
PREFIX  /usr 
QuantumDepth 16 
RELEASE_DATE 2012-05-07 
VERSION  6.5.4 
WEBSITE  http://www.imagemagick.org 

문제가있을 수 있습니다 어떤 생각을 등록 할 것 같다?

+0

ImageMagick을이 용도로 사용하는 것에 대해 잘 모르겠지만 Informscape를 사용하여 대화식으로 inkscape를 사용하여 (예 : "inkscape -g foo.svg") SVG 파일을 WMF 형식으로 저장했습니다. – Eric

+0

비 대화식 방식으로 변환을 수행하려는 경우 이전 주석에 대한 후속 조치를 위해 inkscape는 내부적으로 uniconverter를 사용하지만 직접 실행할 수도 있습니다. uniconverter image.svg image.wmf – Eric

답변

1

WMF로 변환하려면 libwmf 라이브러리를 설치해야합니다. 이미 설치 한 경우, 선택적 모듈 중 하나로 지정해야합니다. WMF는 configure 스크립트 명령 줄에서 --with-modules을 지정하는 경우에만 활성화됩니다.