배율 조정 옵션이 있는 문서 변환

문서를 스프레드시트(예를 들어 PDF에서 Excel, Word에서 Excel로 변환)로 변환할 때 출력 문서의 배율 수준을 설정할 수 있습니다.
using (Converter converter = new Converter("sample.docx", getLoadOptions))
{
    SpreadsheetConvertOptions options = new SpreadsheetConvertOptions
    {
        PageNumber = 2,
        PagesCount = 1,
        Format = SpreadsheetFileType.Xls,
        Zoom = 150
    };
    converter.Convert("converted.xls", options);
}
소스 파일 보기:
converting
아래 출력에서 왼쪽 이미지는 150% 확대되었고 다른 이미지는 60% 확대되었다

당신이 해야 할 일은 당신의 프로젝트에 이것을 참고하는 것입니다.문제가 있으면 우편으로 보내주십시오DLL.

좋은 웹페이지 즐겨찾기