pdf2svg icon indicating copy to clipboard operation
pdf2svg copied to clipboard

use option “all” but only the end page

Open chengruo opened this issue 5 years ago • 1 comments

				while (1) {
					size_t _wr_len = snprintf(svgFilenameBuffer, svgFilenameBufLen, svgFilename, pageInd + 1);
					if (_wr_len >= svgFilenameBufLen) {
						svgFilenameBufLen = _wr_len + 1;
						svgFilenameBuffer = (char*)realloc(svgFilenameBuffer, svgFilenameBufLen);
						assert(svgFilenameBuffer != NULL);
						continue;
					}
					break;
				}

modify here can work

chengruo avatar Feb 22 '20 03:02 chengruo

@dawbarton, could you merge the latest commits from https://github.com/JackieFei/pdf2svg? HomeBrew points to your repository and the resulting binary is buggy…

kapfab avatar Jun 02 '20 12:06 kapfab