কম্পিউটার

HTML5 ক্যানভাসে সংরক্ষণ এবং পুনরুদ্ধারের পদ্ধতিগুলি কী কী?


HTML5 ক্যানভাস ক্যানভাস স্টেট সংরক্ষণ এবং পুনরুদ্ধার করার জন্য দুটি গুরুত্বপূর্ণ পদ্ধতি প্রদান করে। প্রতিবার সংরক্ষণ করার সময় ক্যানভাস স্টেটগুলি একটি স্ট্যাকে সংরক্ষণ করা হয় পদ্ধতি বলা হয়, এবং প্রতিবার পুনরুদ্ধার করার সময় স্ট্যাক থেকে শেষ সংরক্ষিত অবস্থা ফেরত দেওয়া হয় পদ্ধতি বলা হয়।

<থহেড>
Sr.No
পদ্ধতি এবং বর্ণনা
1
সংরক্ষণ()
এই পদ্ধতি স্ট্যাকের উপর বর্তমান অবস্থা push করে.
2
রিস্টোর()
এই পদ্ধতিটি স্ট্যাকের উপরের রাজ্যটিকে পপ করে, সেই অবস্থায় প্রসঙ্গ পুনরুদ্ধার করে।

উদাহরণ

আপনি ক্যানভাসে সংরক্ষণ এবং পুনরুদ্ধার পদ্ধতি সম্পর্কে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন:

<!DOCTYPE HTML>
<html>
   <head>
      <style>
         #test {
            width: 100px;
            height:100px;
            margin: 0px auto;
         }
      </style>
      <script>
         function drawShape(){

            // get the canvas element using the DOM
            var canvas = document.getElementById('mycanvas');

            // Make sure we don't execute when canvas isn't supported
            if (canvas.getContext){

               // use getContext to use the canvas for drawing
               var ctx = canvas.getContext('2d');

               // draw a rectangle with default settings
               ctx.fillRect(0,0,150,150);

               // Save the default state
               ctx.save();

               // Make changes to the settings
               ctx.fillStyle = '#66FFFF'
               ctx.fillRect( 15,15,120,120);

               // Save the current state
               ctx.save();

               // Make the new changes to the settings
               ctx.fillStyle = '#993333'
               ctx.globalAlpha = 0.5;
               ctx.fillRect(30,30,90,90);

               // Restore previous state
               ctx.restore();

               // Draw a rectangle with restored settings
               ctx.fillRect(45,45,60,60);

               // Restore original state
               ctx.restore();

               // Draw a rectangle with restored settings
               ctx.fillRect(40,40,90,90);
            } else {
               alert('You need Safari or Firefox 1.5+ to see this demo.');
            }
         }
      </script>
   </head>
   <body id = "test" onload = "drawShape();">
      <canvas id = "mycanvas"></canvas>
   </body>
</html>

  1. HTML5-এ ক্যানভাসের জন্য বিনামূল্যের লাইব্রেরিগুলি কী কী?

  2. পিএইচপিতে গেটার এবং সেটার্স পদ্ধতি কি কি?

  3. C# এ থ্রেড ক্লাসের পদ্ধতি এবং বৈশিষ্ট্যগুলি কী কী?

  4. C# এ ক্লাস পদ্ধতি এবং ক্লাস সদস্যদের মধ্যে পার্থক্য কী?