12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!-- <link rel = ”stylesheet” href = "{{asset('/pintura/pintura.scss')}}" /> -->
- <style>
- .my-editor {
- height: 600px;
- }
- </style>
- <div class="my-editor"></div>
- <script type="module">
- import {
- // The editor factory method
- appendEditor,
- // Import the default image reader and writer
- createDefaultImageReader,
- createDefaultImageWriter,
- // The method used to register the plugins
- setPlugins,
- // The plugins we want to use
- plugin_crop,
- plugin_finetune,
- plugin_filter,
- plugin_annotate,
- // The user interface and plugin locale objects
- locale_en_gb,
- plugin_crop_locale_en_gb,
- plugin_finetune_locale_en_gb,
- plugin_filter_locale_en_gb,
- plugin_annotate_locale_en_gb,
- // Because we use the annotate plugin we also need
- // to import the markup editor locale and the shape preprocessor
- markup_editor_locale_en_gb,
- createDefaultShapePreprocessor,
- // Import the default configuration for the markup editor and finetune plugins
- markup_editor_defaults,
- plugin_finetune_defaults,
- plugin_filter_defaults,
- } from "../pintura/pintura.js";
- // This registers the plugins with Pintura Image Editor
- setPlugins(plugin_crop, plugin_finetune, plugin_filter);
- // Append the editor
- appendEditor(".my-editor", {
- // The source image to load
- src: "./my-image.jpeg",
- // This will read the image data (required)
- imageReader: createDefaultImageReader(),
- // This will write the output image
- imageWriter: createDefaultImageWriter(),
- // The markup editor default options, tools, shape style controls
- ...markup_editor_defaults,
- // The finetune util controls
- ...plugin_finetune_defaults,
- // The filter util controls
- ...plugin_filter_defaults,
- // This handles complex shapes like arrows / frames
- shapePreprocessor: createDefaultShapePreprocessor(),
- // This will set a square crop aspect ratio
- imageCropAspectRatio: 1,
- // The icons and labels to use in the user interface (required)
- locale: {
- ...locale_en_gb,
- ...plugin_crop_locale_en_gb,
- ...plugin_finetune_locale_en_gb,
- ...plugin_filter_locale_en_gb,
- ...plugin_annotate_locale_en_gb,
- ...markup_editor_locale_en_gb,
- },
- });
- </script>
|