써먹는 웹개발
[ckeditor] 내가 써본 추가 모듈 본문
ckeditor 중에 내가 써본 추가 모듈
1. 이미지 업로드시 자체 소스 저장되는 base64처리

- 출처 : https://ckeditor.com/cke4/addon/base64image
1-2) 이미지를 복사 붙여넣기할때 base64 처리
- 출처 : https://ckeditor.com/cke4/addon/pastebase64
※ 이미지 파일 옮기는 Drag&Drop 방식은 base64처리가 안되므로 소스 상에서 막아놓자
Paste image as base64
This plugin adds the ability to paste images from clipboard as base64 strings using CKEditor. The Browser must support the JavaScript File API. Only Chrome and Safari browsers has been tested for the moment.
ckeditor.com
2. 배경 이미지 업로드
- 출처 : https://ckeditor.com/cke4/addon/bgimage
※ base64 처리하려면 1번 소스를 참고하여 소스를 수정할 것
Background Image for CKEditor
by this plugin you can set background image in your CKEditor, don't forget to put the following line in your config.js : config.extraPlugins = 'bgimage'; config.allowedContent = 'div{*}';
ckeditor.com
모듈 추가할때 참고한 사이트
'Client > Jqgrid (+tui grid), ck editor' 카테고리의 다른 글
[ckeditor] 모듈 추가 방법 및 주의사항 (0) | 2020.03.18 |
---|---|
[ckeditor] 이미지 업로드 이후에 메시지 리턴 (0) | 2019.07.16 |
[tui grid] 페이징(pagination) 처리하는 방법 (1) | 2018.08.29 |
[Toast UI Grid] 헤더에 checkbox 넣는 방법 (0) | 2018.08.21 |
[tui grid] 조회시 1건만 출력되는 현상 해결방법 (0) | 2018.06.15 |