Skip to content

Instantly share code, notes, and snippets.

View aklimaruhina's full-sized avatar

Aklima Akther ruhina aklimaruhina

View GitHub Profile
@aklimaruhina
aklimaruhina / datatables.js
Created February 18, 2023 05:15 — forked from usmcamp0811/datatables.js
Custome PDF in DataTables Example
$(document).ready(function() {
// Function to convert an img URL to data URL
function getBase64FromImageUrl(url) {
var img = new Image();
img.crossOrigin = "anonymous";
img.onload = function () {
var canvas = document.createElement("canvas");
canvas.width =this.width;
canvas.height =this.height;
var ctx = canvas.getContext("2d");