Использование Javascript для удаления текста с изображения?

С помощьюcropper.js я могу обрезать/изменить размер изображения, но могу ли я, например, удалить текст с изображения? или рисунок? Тогда сохранить или скачать?

Спасибо за любую помощь

https://jsfiddle.net/dalinhuang/dsh33tu8/

$('#edit_img').click(function(){

  $('#image').cropper({
    aspectRatio: 'auto',
    crop: function(e) {
    }
  });
});

$("#reset").click(function() {
  $('#image').cropper("reset");
});
/* Limit image width to avoid overflow the container */
img {
  max-width: 100%; /* This rule is very important, please do not ignore this! */
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/cropper/3.0.0/cropper.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/cropper/3.0.0/cropper.min.js"></script>




<button id="edit_img">EDIT IMG</button><br><br>
<button id="reset">RESET</button><br><br>

<div>
  <img id="image" src="https://s3.amazonaws.com/dev-resized-image/full/dad3b2b5-1d74-4277-8ee7-fc11196a508c/funny-that-look-pictures-lol.jpg">
</div>


person Dalin Huang    schedule 22.09.2017    source источник
comment
Загрузите изображение на холст, затем вы можете отредактировать изображение и отправить его обратно на сервер для сохранения.   -  person Teemu    schedule 22.09.2017
comment
@Teemu Я устал от этого, но не сработало, скачанный img не работает? codepen.io/hdl881127/pen/KXgQme   -  person Dalin Huang    schedule 22.09.2017
comment
Изображение выглядит нормально в связанном codepen в FF. Я имею в виду технически в порядке =).   -  person Teemu    schedule 22.09.2017
comment
@Teemu, но если вы загрузите, изображение будет сломано   -  person Dalin Huang    schedule 22.09.2017
comment
Uncaught DOMException: не удалось выполнить «toDataURL» для «HTMLCanvasElement»: испорченные холсты не могут быть экспортированы.   -  person Balakrishna Gondesi    schedule 22.09.2017
comment
stackoverflow .com/questions/34840250/   -  person Balakrishna Gondesi    schedule 22.09.2017


Ответы (1)


Наконец, после нескольких дней поисков.

Оказывается, это лучшее. Использование Adobe API для редактирования изображений!!!

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<!-- Load Feather code -->
<script type="text/javascript" src="https://dme0ih8comzn4.cloudfront.net/imaging/v3/editor.js"></script>

<!-- Instantiate Feather -->
<script type='text/javascript'>
var featherEditor = new Aviary.Feather({
	apiKey: 'your-api-key-here',
	theme: 'dark', // Check out our new 'light' and 'dark' themes!
	tools: 'all',
	appendTo: '',
	onSave: function(imageID, newURL) {
		var img = document.getElementById(imageID);
		img.src = newURL;
	},
	onError: function(errorObj) {
		alert(errorObj.message);
	}
});
function launchEditor(id, src) {
	featherEditor.launch({
		image: id,
		url: src
	});
	return false;
}
</script>

<div id='injection_site'></div>
<!-- Add an edit button, passing the HTML id of the image and the public URL of the image -->
<p><input type='image' src='http://images.aviary.com/images/edit-photo.png' value='Edit photo' onclick="return launchEditor('image1', 'https://i.imgflip.com/ehl86.jpg');" /></p>
<img id='image1' src='https://i.imgflip.com/ehl86.jpg'/>

person Dalin Huang    schedule 27.09.2017