honeynebula - Forevermore a Humanist Romantic
Forevermore a Humanist Romantic

studyblr • stemblr • codeblr • progblr • swiftie • writer • computer science & computer engineering

75 posts

Yes, Because Professional Experience = Learning O(^o^)o

yes, because professional experience = learning o(^o^)o

Does It Still Count As Studyblr Content When Its Professional Development
Does It Still Count As Studyblr Content When Its Professional Development
Does It Still Count As Studyblr Content When Its Professional Development

does it still count as studyblr content when it’s professional development

  • arabel--la
    arabel--la liked this · 8 months ago
  • lysjb03
    lysjb03 liked this · 8 months ago
  • powerful-r11
    powerful-r11 liked this · 8 months ago
  • garsmacabre
    garsmacabre liked this · 8 months ago
  • pastel--lilac
    pastel--lilac liked this · 8 months ago
  • between-the-pagess
    between-the-pagess liked this · 8 months ago
  • inttezaar
    inttezaar liked this · 8 months ago
  • missys-mansion-of-mistakes
    missys-mansion-of-mistakes reblogged this · 8 months ago
  • coleo-ptere
    coleo-ptere liked this · 9 months ago
  • unravelingsofanarrator
    unravelingsofanarrator liked this · 9 months ago
  • dreamingstuf7
    dreamingstuf7 liked this · 9 months ago
  • grabthepen
    grabthepen reblogged this · 9 months ago
  • buriedheartbeats
    buriedheartbeats liked this · 9 months ago
  • chaiandtchaikovsky
    chaiandtchaikovsky reblogged this · 9 months ago
  • valezx
    valezx liked this · 9 months ago
  • peachysimp
    peachysimp liked this · 9 months ago
  • pridou
    pridou reblogged this · 9 months ago
  • pridoo
    pridoo liked this · 9 months ago
  • shy-and-reserved
    shy-and-reserved reblogged this · 9 months ago
  • barbasbackside
    barbasbackside reblogged this · 9 months ago
  • barbasbackside
    barbasbackside liked this · 9 months ago
  • minsulies
    minsulies liked this · 9 months ago
  • perpulchra
    perpulchra liked this · 9 months ago
  • henfox
    henfox liked this · 9 months ago
  • darkacademicc
    darkacademicc reblogged this · 9 months ago
  • srxracha
    srxracha reblogged this · 9 months ago
  • stuckinapril
    stuckinapril liked this · 9 months ago
  • sleepinnyc
    sleepinnyc liked this · 9 months ago
  • 712virginia
    712virginia liked this · 9 months ago
  • sentimentalfuturist
    sentimentalfuturist reblogged this · 9 months ago
  • legallytired
    legallytired reblogged this · 9 months ago
  • star--707
    star--707 liked this · 9 months ago
  • grabthepen
    grabthepen reblogged this · 9 months ago
  • actualising-study
    actualising-study reblogged this · 9 months ago
  • matrykoshkas
    matrykoshkas liked this · 9 months ago
  • sin-sinamon
    sin-sinamon liked this · 9 months ago
  • teacupsandrainydays
    teacupsandrainydays liked this · 9 months ago
  • triwku
    triwku liked this · 9 months ago
  • scorpionand
    scorpionand liked this · 9 months ago
  • teareads
    teareads liked this · 9 months ago
  • moriartysheadspace
    moriartysheadspace liked this · 9 months ago
  • fawnoversaturn
    fawnoversaturn liked this · 9 months ago
  • tulip-jojo
    tulip-jojo liked this · 9 months ago
  • furiousllamastrawberry
    furiousllamastrawberry liked this · 9 months ago
  • soletyue
    soletyue reblogged this · 9 months ago
  • honeynebula
    honeynebula reblogged this · 9 months ago
  • honeynebula
    honeynebula liked this · 9 months ago
  • davalexandra
    davalexandra liked this · 9 months ago
  • thefatiguedflautist
    thefatiguedflautist liked this · 9 months ago
  • stutee
    stutee liked this · 9 months ago

More Posts from Honeynebula

8 months ago

empowering bbe Tuesday afternoon; whatever that means

what is your daylist title on spotify today?


Tags :
9 months ago

woah! it's like post-impressionism!!!! (if I'm correct) 🤔😍

thinking about anastasia trusova paintings again

9 months ago

Convert HTML to Image: A Step-by-Step Guide ✨

Convert HTML To Image: A Step-by-Step Guide

Do you want to turn some HTML code you've made that's on your website and have a way to convert it into an image for you to save?

Well, look no further! I too wanted to do the same thing but funny enough, there weren't any straightforward tutorials out there that could show you how! After hours of searching, I finally discovered the solution~!

This is an old tutorial I made 🐼

Convert HTML To Image: A Step-by-Step Guide

💛 Set your environment

Before we dive into the conversion process, I'll assume you already have your HTML code ready. What you want to learn is how to turn it into an image file. You should have a good grasp of HTML and JavaScript. For this tutorial, we'll use the following HTML code example:

Convert HTML To Image: A Step-by-Step Guide

We won't include the CSS code, as it doesn't affect this tutorial. The JavaScript file (script.js) at the bottom of the body element is where we'll add the functionality for the conversion.

Your page should resemble the following:

Convert HTML To Image: A Step-by-Step Guide

As you can see, the "Click me" button will handle the conversion. We aim to convert everything within the div.info-div into an image.

💛 Using the html2canvas JavaScript Library

The html2canvas library allows you to take screenshots of webpages and target specific elements on a screen. Here are the steps to include the library in your project:

The steps to put the library in your project:

Visit the html2canvas website for more information.

Copy the CDN link from here

Convert HTML To Image: A Step-by-Step Guide

and include it in a script tag in your project's head tag in the HTML file:

Convert HTML To Image: A Step-by-Step Guide

That's it for including the library on the HTML side. Now, let's move on to the JavaScript code.

💛 JavaScript Functionality

Here's the JavaScript code to handle the conversion:

Convert HTML To Image: A Step-by-Step Guide

In this code, I want to turn the whole div.info-div into an image, I put it into a variable in const div = document.querySelector(".info-div");.

I also put the button into a variable in const button = document.querySelector("button");

I added a click event listener to the button so when the user clicks the button, it will follow the code inside of the event listener!

You can find similar code like this in the documentation of the html2canvas library:

Convert HTML To Image: A Step-by-Step Guide

What is happening here is:

We add the div (or what the element we want to take an image of) into the html2canvas([element]).then((canvas)

Added the image file type url to a variable = const imageDataURL = canvas.toDataURL("image/png"); - You can replace the png to other image file types such as jpg, jpeg etc

Created an anchor/link tag, added the href attribute to imageDataURL

The download attribute is where we will give the default name to the image file, I added "dog.png"

Perform the click() function to the anchor tag so it starts to download the image we created

And that's it!

💛 The End

And that's it! You've successfully learned how to turn your HTML into an image. It's a great way to save and share your web content in a unique format.

Convert HTML To Image: A Step-by-Step Guide

If you have any questions or need further clarification, please comfortable to ask. Enjoy converting your HTML into images! 💖🐼

Convert HTML To Image: A Step-by-Step Guide

Tags :
9 months ago

this is so cute, like a tiny adventurer

Frolicking And Flower Picking
Frolicking And Flower Picking

Frolicking and flower picking 🌼


Tags :