CGO 未定义对“TIFFGetField”的引用

我主要从事 Go 项目 atm 工作,但由于参数传递,我必须将 CGO 用于我的项目的一部分,目的是使用 C 从 Go 编辑 TIF 文件。我不熟悉 C,但它似乎是解决我们问题的唯一方法。


问题是当我理论上设置 Go 部分并想使用我的 C 代码时,它会undefined reference to 使用 TIFFGetField、_TIFFmalloc、TIFFReadRGBAImage 函数调用删除 xxxx'`。


可能我什至没有以正确的方式导入 libtiff 库。有趣的是C代码本身的第一个代码TIFF* tif = TIFFOpen("foo.tif", "w");没有对TIFFOpen的引用错误,只有其他的(TIFFGetField,_TIFFmalloc,TIFFReadRGBAImage,_TIFFfree,TIFFClose)


我的代码是


package main


// #cgo CFLAGS: -Ilibs/libtiff/libtiff

// #include "tiffeditor.h"

import "C"


func main() {

    C.tiffEdit()

}

#include "tiffeditor.h"

#include "tiffio.h"


void tiffEdit(){

    TIFF* tif = TIFFOpen("foo.tif", "w");

    if (tif) {

        uint32 w, h;

        size_t npixels;

        uint32* raster;


        TIFFGetField(tif, TIFFTAG_IMAGEWIDTH, &w);

        TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &h);

        npixels = w * h;

        raster = (uint32*) _TIFFmalloc(npixels * sizeof (uint32));

        if (raster != NULL) {

            if (TIFFReadRGBAImage(tif, w, h, raster, 0)) {

            //

            }

            _TIFFfree(raster);

        }

        TIFFClose(tif);

    }

}

我的目标首先是用我的 go 代码建立 libtiff 并让它识别函数 libtiff,这样我就可以专注于解决问题本身。


MYYA
浏览 164回答 1
1回答

呼唤远方

如果您在 cgo.xml 中看到消息“未定义对 xxx 的引用”。您很可能错过了到共享库的链接。我对这个包不太熟悉,但我建议您可以尝试添加如下内容以使您的程序链接到 C 动态库://&nbsp;#cgo&nbsp;LDFLAGS:&nbsp;-lyour-lib在上述情况下,我将我的 go 程序链接到一个名为“libyour-lib.so”的 C 动态库。例子假设您的 TIFF 源来自http://www.simplesystems.org/libtiff/脚步下载源代码检查 README.md(或 INSTALL)以阅读有关如何编译此 C 库的指南按照提供的说明安装 C 库如果您在不修改默认设置的情况下正确操作,您应该在 /usr/local/include 中找到 tiff 标头,在 /usr/local/lib 中找到其动态库通过为 cgo 编译器提供适当的提示,将这些东西集成到你的 go 程序中。代码我已经成功构建了这个程序,并按预期执行。这对您来说可能是一个很好的起点。package main// #cgo LDFLAGS: -ltiff// #include "tiffio.h"// #include <stdlib.h>import "C"import (&nbsp; &nbsp; "fmt"&nbsp; &nbsp; "unsafe")func main() {&nbsp; &nbsp; path, perm := "foo.tif", "w"&nbsp; &nbsp; // Convert Go string to C char array. It will do malloc in C,&nbsp; &nbsp; // You must free these string if it no longer in use.&nbsp; &nbsp; cpath := C.CString(path)&nbsp; &nbsp; cperm := C.CString(perm)&nbsp; &nbsp; // Defer free the memory allocated by C.&nbsp; &nbsp; defer func() {&nbsp; &nbsp; &nbsp; &nbsp; C.free(unsafe.Pointer(cpath))&nbsp; &nbsp; &nbsp; &nbsp; C.free(unsafe.Pointer(cperm))&nbsp; &nbsp; }()&nbsp; &nbsp; tif := C.TIFFOpen(cpath, cperm)&nbsp; &nbsp; if tif == nil {&nbsp; &nbsp; &nbsp; &nbsp; panic(fmt.Errorf("cannot open %s", path))&nbsp; &nbsp; }&nbsp; &nbsp; C.TIFFClose(tif)}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go