gpt4 book ai didi

common-lisp - 如何在 Common Lisp 中将二维字节数组写入二进制文件?

转载 作者:行者123 更新时间:2023-12-01 12:03:07 26 4
gpt4 key购买 nike

我想对于具有 Common Lisp 经验的人来说,这是一个简单的问题。对于刚刚开始使用 LISP 的我来说,情况并非如此。

正如您在下面的下一个片段中看到的,我创建了一个 800 x 600 类型的 UNSIGNED BYTE 数组。

(defun test-binary-save ()
(let*
((width 800)
(height 600)
(arr (make-array (list width height)
:element-type '(mod 256)
:initial-element 0)))
(utilities::save-array-as-pgm "test.pgm" arr)))

我的实用程序包中的函数应该以 P5 PGM 格式写入磁盘。

(defun save-array-as-pgm (filename buffer)
"Writes a byte array as a PGM file (P5) to a file."
(with-open-file
(stream filename
:element-type '(unsigned-byte 8)
:direction :output
:if-does-not-exist :create
:if-exists :supersede)
(let*
((dimensions (array-dimensions buffer))
(width (first dimensions))
(height (second dimensions))
(header (format nil "P5~A~D ~D~A255~A"
#\newline
width height #\newline
#\newline)))

(loop
:for char :across header
:do (write-byte (char-code char) stream))
;(write-sequence buffer stream) <<-- DOES NOT WORK - is not of type SEQUENCE
))
filename)

做同样事情的等效(和工作)C 函数如下所示。

static
int
save_pgm
( const char* filename
, size_t width
, size_t height
, const uint8_t* pixels
)
{
if(NULL == filename)
return 0;
if(NULL == pixels)
return 0;

FILE *out = fopen(filename, "wb");
if(NULL != out)
{
fprintf(out, "P5\n%zu %zu\n255\n", width, height);
size_t nbytes = width * height;
fwrite(pixels,1,nbytes,out);
fclose(out);
return 1;
}

return 0;
}

谁能告诉我如何修复我的 save-array-as-pgm 函数,最好是一次性写入数组,而不是使用循环和 (write-byte ( aref 缓冲区 y x) 流)?

在我决定在这里问这个问题之前,我在谷歌上搜索了很多,只找到了对一些做花哨的二进制内容的包的引用——但这是一个简单的案例,我正在寻找一个简单的解决方案。

最佳答案

Common Lisp 支持置换数组:

CL-USER 6 > (let ((array (make-array (list 3 4)
:initial-element 1
:element-type 'bit)))
(make-array (reduce #'* (array-dimensions array))
:element-type 'bit
:displaced-to array))
#*111111111111

置换数组本身没有存储空间,而是使用另一个数组的存储空间。它可以有不同的维度。

现在的问题是 Lisp 实现如何有效地通过置换数组访问数组。

关于common-lisp - 如何在 Common Lisp 中将二维字节数组写入二进制文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60068570/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com