免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 3795 | 回复: 12
打印 上一主题 下一主题

老大们帮我看看这是什么原因 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-06-16 12:07 |只看该作者 |倒序浏览
本帖最后由 80520997 于 2010-06-16 14:03 编辑

[

我的项目中需要用到ImageMagick 我已经安装了它。可是在开发中我调用它是却出现了内存错。我想知道问题出在哪

论坛徽章:
0
2 [报告]
发表于 2010-06-16 12:16 |只看该作者
你那里有这个aaa文件么?

论坛徽章:
0
3 [报告]
发表于 2010-06-16 14:05 |只看该作者
换了真正的路径情况还是一样

论坛徽章:
0
4 [报告]
发表于 2010-06-16 14:16 |只看该作者
int main( ssize_t /*argc*/, char ** argv)
{
  InitializeMagick(*argv);

论坛徽章:
0
5 [报告]
发表于 2010-06-16 14:17 |只看该作者
Please note that under Windows (and possibly the Mac) it is necessary to initialize the ImageMagick library prior to using the Magick++ library. This initialization is performed by passing the path to the ImageMagick DLLs (assumed to be in the same directory as your program) to the InitializeMagick() function call. This is commonly performed by providing the path to your program (argv[0]) as shown in the following example:

int main( ssize_t /*argc*/, char ** argv)
{
  InitializeMagick(*argv);
This initialization step is not required under Unix, Linux, Cygwin, or any other operating environment that supports the notion of "installing" ImageMagick in a known location.

论坛徽章:
0
6 [报告]
发表于 2010-06-16 14:18 |只看该作者
希望你编程序的时候能注意质量,而不是速度,除非老板逼迫你那样干。

论坛徽章:
0
7 [报告]
发表于 2010-06-16 14:38 |只看该作者
回复 6# ah13k


    谢谢仁兄。我有点没明白。它是要吧ImageMagick 的dll文件和项目放在一起才行码

论坛徽章:
0
8 [报告]
发表于 2010-06-16 15:15 |只看该作者
依然存在

#include "stdafx.h"
#include "Magick++.h"

using namespace Magick;


int main(int argc, char** argv)
{
        InitializeMagick(*argv);
       
       
        Image  img;

        printf("%s\n",*argv);
        img.read("D:\\php\\tests.pdf");


       
        return 0;

}

论坛徽章:
0
9 [报告]
发表于 2010-06-16 17:34 |只看该作者
回复 7# 80520997


    请自行查阅文档。

论坛徽章:
0
10 [报告]
发表于 2010-06-17 15:05 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP