Getting started
Installation
npm install tiptap-extension-resizable-image
Don't forget to import the CSS file to your application:
import 'tiptap-extension-resizable-image/styles.css';
Basic usage
import { useEditor, EditorContent } from '@tiptap/react';
import StarterKit from '@tiptap/starter-kit';
import { ResizableImage } from 'tiptap-extension-resizable-image';
const Demo = () => {
const editor = useEditor({
extensions: [
StarterKit,
ResizableImage.configure({
defaultWidth: 200,
defaultHeight: 200,
}),
],
content: /* html */ `
<p>
<img
src="/example.jpg"
alt="image alt"
title="image title"
width="300"
data-keep-ratio="true"
>
</p>
`,
immediatelyRender: false,
});
return (
<div>
<EditorContent editor={editor} className='editor' />
</div>
);
};
export default Demo;
Commands
setResizableImage
editor.commands.setResizableImage({
src: '',
alt: '',
title: '',
width: 200,
height: 200,
className: '',
'data-keep-ratio': true,
});