telesoho / vscode-markdown-paste-image

Smartly paste for Markdown.
MIT License
135 stars 41 forks source link

extension not working #6

Closed dptr closed 7 years ago

dptr commented 7 years ago

i downloaded a Visual Studio Code 1.14.1 and installed this extension, when i paste an image, it shows the path select text box, but when i press the enter key , no picture was pasted in the markdown file, neither any image was found in the file path.

dptr commented 7 years ago

i solved by add powershell.exe path to the environment variable PATH.

Eucaly commented 4 years ago

Could any one indicate the "exact content" for below?

gusbemacbe commented 4 years ago

Hello @Eucaly !

I have still the same problem. Here is the output:

PS C:\Users\gusbe> $env:path
C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Users\gusbe\AppData\Local\Microsoft\WindowsApps;D:\gusbe\Applications\VSCode Insiders\bin
gusbemacbe commented 4 years ago

And I installed PowerShell 7, but it was not successful to copy and paste on VSCode:

PS C:\Users\gusbe>  $env:Path -split ';'
C:\Program Files\PowerShell\7
C:\WINDOWS\system32
C:\WINDOWS
C:\WINDOWS\System32\Wbem
C:\WINDOWS\System32\WindowsPowerShell\v1.0\
C:\WINDOWS\System32\OpenSSH\
C:\Program Files\dotnet\
C:\Program Files\PowerShell\7\
C:\Users\gusbe\AppData\Local\Microsoft\WindowsApps
D:\gusbe\Applications\VSCode Insiders\bin
ctlajoie commented 4 years ago

As of powershell 6.0, the executable is named pwsh.exe

jygzyc commented 3 years ago

Extension not working no Vscode 1.51.0

jmanthony3 commented 3 years ago

Extension not working no Vscode 1.51.0

Extension for Windows 10 not working on VS Code v1.53.1

alejandroarmas commented 3 years ago

Extension not working on 1.55.2

htqx commented 3 years ago

1.57.1
paste pic ok。 but paste regex string no working。 arch linux

gusbemacbe commented 3 years ago

1.57.1 paste pic ok。 but paste regex string no working。 arch linux

On native Linux or on WSL? Did you install xclip?

htqx commented 3 years ago

1.57.1 paste pic ok。 but paste regex string no working。 arch linux

On native Linux or on WSL? Did you install xclip?

yes. native arch linux.

According to xclip's information, there is more than one clipboard, but multiple:

primary

secondary

clipboard

buffer-cut

vscode editor using 1. markdown paste using 3.

So, not working

I think...

ujwaliyer commented 2 years ago

I installed the latest version of btoh powershell, vscode and this extension- the mark down paste action is pasting a 20 page long binary of the copied image: something like this ![](data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABLcAAAF8CAYAAAA971neAAAgAElEQVR4AeydMZLDPHK2fYCVyy7bf+YbOLNqk73AHsBbCjbaM7hK0R7CVQq/2JEjhd8FNlL8lSNfhX+B1As0oQYIcMgZceYJpsihgEaj

jmanthony3 commented 2 years ago

For anyone else struggling to do this, I have written a simple Python script that I call from a VS Code shortcut to store the image (if in clipboard) to a folder in the root directory of the .md file and then store to clipboard the text to paste into the .md file that links to the image.

import os
from PIL import ImageGrab
import pyperclip
import sys
import tag_counter
import timestamp as ts

class getClip:
    def __init__(self, mdPath, mdBaseName, imageDescription, imageTitle):
        img = ImageGrab.grabclipboard()
        if isinstance(img, type(None)):
            sys.exit("ERROR! Please copy an image.")
        else:
                        filePath = mdPath
            relativeFilePath = "/".join([filePath, mdBaseName])
            try: os.mkdir(relativeFilePath)
            except OSError as error: print(error)
            when = ts.when()
            imageTitle = str.lower(imageTitle).replace(" ", "_")
            imageName = f"{imageTitle}_{when}.png"
            fileName = f"{relativeFilePath}/{imageName}"
            pasteName = f"./{mdBaseName}/{imageName}"
            img.save(fileName, format="PNG")
            fig_number = tag_counter.getCount(mdPath, mdBaseName)
            pyperclip.copy(\
                f"| ![]({pasteName}) |\n" + \
                "|:--:|\n" + \
                f"| {imageDescription} " + "\\\\(\\tag{" + f"{fig_number+1}" + "} \\label{fig:" + f"{imageTitle}" + "}\\\\) |"\
                )
            print(f"Completed {fileName}")
if __name__ == "__main__":
    getClip(str(sys.argv[1]), str(sys.argv[2]), str(sys.argv[3]), str(sys.argv[4]))
gusbemacbe commented 2 years ago

For anyone else struggling to do this, I have written a simple Python script that I call from a VS Code shortcut to store the image (if in clipboard) to a folder in the root directory of the .md file and then store to clipboard the text to paste into the .md file that links to the image.

import os
from PIL import ImageGrab
import pyperclip
import sys
import tag_counter
import timestamp as ts

class getClip:
  def __init__(self, mdPath, mdBaseName, imageDescription, imageTitle):
      img = ImageGrab.grabclipboard()
      if isinstance(img, type(None)):
          sys.exit("ERROR! Please copy an image.")
      else:
                        filePath = mdPath
          relativeFilePath = "/".join([filePath, mdBaseName])
          try: os.mkdir(relativeFilePath)
          except OSError as error: print(error)
          when = ts.when()
          imageTitle = str.lower(imageTitle).replace(" ", "_")
          imageName = f"{imageTitle}_{when}.png"
          fileName = f"{relativeFilePath}/{imageName}"
          pasteName = f"./{mdBaseName}/{imageName}"
          img.save(fileName, format="PNG")
          fig_number = tag_counter.getCount(mdPath, mdBaseName)
          pyperclip.copy(\
              f"| ![]({pasteName}) |\n" + \
              "|:--:|\n" + \
              f"| {imageDescription} " + "\\\\(\\tag{" + f"{fig_number+1}" + "} \\label{fig:" + f"{imageTitle}" + "}\\\\) |"\
              )
          print(f"Completed {fileName}")
if __name__ == "__main__":
  getClip(str(sys.argv[1]), str(sys.argv[2]), str(sys.argv[3]), str(sys.argv[4]))

@jmanthony3, does it work with us on company's computers when PowerShell is blocked?

jmanthony3 commented 2 years ago

I should think that if you were able to run Python scripts that you could run this. The computer I wrote this on is a company machine which I have admin over so I do not know if it would run without the elevated privileges.