mirror of
https://github.com/NickeManarin/ScreenToGif.git
synced 2026-04-25 15:15:51 +03:00
[GH-ISSUE #470] Copy link copies a PNG file rather than the gif #393
Labels
No labels
copy cats
duplicated
future feature
pull-request
⬜ Accepted
⬜ Completed
⬜ Help Wanted 💪
⬜ In Progress
⬜ Missing Details
⬜ Pending
⬜ Waiting For Answer ⏳
🆕 feature preview
🔷 Bug 🐛
🔷 Out Of Scope
🔷 Out Of Scope
🔷 Question
🔷Enhancement
🔷Enhancement
🔷Invalid / External
🔷Knowledge Base
🔷Won't Fix
🕑 High
🕑 High
🕑 High
🕕 Medium
🕙 Low
🕛 Critical
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ScreenToGif#393
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nickdiacre on GitHub (Mar 25, 2019).
Original GitHub issue: https://github.com/NickeManarin/ScreenToGif/issues/470
On hitting "save as... copy link" the data on the clipboard is just the last PNG frame and not the actual animated GIF...
@ajayyy commented on GitHub (May 27, 2019):
Same with copy as image, but I kind of understand that.
@erickmp07 commented on GitHub (Apr 2, 2020):
I want to fix this bug.
Can you describe the steps to reproduce it?
@ajayyy commented on GitHub (Apr 2, 2020):
It might be intended as the clipboard has a maximum size.
This occurs when you hit export and then click the copy image button on the export dialog
@erickmp07 commented on GitHub (Apr 2, 2020):
I'm sorry, but I can't reproduce this bug.
The Copy Image Button on the Export Dialog doesn't exist at version 2.22.1 or I couldn't find it.
@nickdiacre commented on GitHub (Apr 2, 2020):
Thanks for looking into this...
Just tested...
The result is a PNG plus text linking to the file.
Nick
On 02/04/2020 23:49:19, Erick Macedo Pinto notifications@github.com wrote:
I'm sorry, but I can't reproduce this bug.
The Copy Image Button on the Export Dialog doesn't exist at version 2.22.1 or I couldn't find it.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub [https://github.com/NickeManarin/ScreenToGif/issues/470#issuecomment-608131478], or unsubscribe [https://github.com/notifications/unsubscribe-auth/ABLE5FSSQ7CQI2H56DCAOU3RKUI65ANCNFSM4HA4EJPA].
@NickeManarin commented on GitHub (Apr 2, 2020):
There's two places where you can set to copy the generated gif:
The first that says "File" is the same as the "Copy" button on the second one.
The problem here is that there's no Windows API to properly add a GIF to the clipboard, with all frames.
https://stackoverflow.com/a/19823589/1735672
(I'm going to try something different)
@nickdiacre commented on GitHub (Apr 2, 2020):
yes I was using file, should have added that...
@nickdiacre commented on GitHub (Apr 2, 2020):
Both options, using "file" and right clicking the completed result yield the same outcome
@erickmp07 commented on GitHub (Apr 2, 2020):
So the issue doesn't have a solution at this moment, right?
@NickeManarin commented on GitHub (Apr 2, 2020):
Kind of. I'm going to replace the code of the File/Copy options to follow the same behavior as doing Ctrl + C with the file selected on Windows Explorer.
Also, I'm going to remove the "Copy as Image".
@NickeManarin commented on GitHub (Apr 3, 2020):
Closing this as not possible to fix, but with a code tweak.