我有下一个用于 JPEG 图像解压缩的标准代码,它基于libjpeg
.
jpeg_decompress_struct cinfo;
// ...Set error manager and data source...
jpeg_read_header(&cinfo, TRUE);
jpeg_start_decompress(&cinfo);
while (cinfo.output_scanline < cinfo.output_height) {
JSAMPLE* scanlines[1];
// ...Set target pointer for scanline...
jpeg_read_scanlines(&cinfo, scanlines, 1);
}
jpeg_destroy_decompress(&cinfo);
我想读取图像的一部分,用矩形裁剪:
// struct RECT {
// int left;
// int top;
// int right;
// int bottom;
// };
RECT cropRect; // Coordinates of the crop rectangle relative to the output image size
我应该在下面的代码中修改什么来告诉libjpeg
立即裁剪图像?
这就是我可以实现它的方式:
- 忽略第一
top - 1
行; - 对于接下来的每一
bottom - top
行:1)将扫描线读取到临时缓冲区;2) 将列范围内的像素从[left, right)
临时缓冲区复制到目标缓冲区。 - 中止减压。
但是这段代码是多余的。