Is it possible to insert shape and add the shape to already existing picture inserted from a file like PNG, JPG, GIF. I am looking for merging the shape and the picture in ONE image, not just grouping them together.
Alternatively is there a way to group two objects in Excel permanently so that no ungrouping is possible?
It is not possible to draw images in Excel. You can only import images.
Related
I currently have 118 separate SVG files, one for each element of the periodic table. This is 1.svg as an example. All of them are based on the same format, so they are the exact same shape and size. I want to arrange these in a table, so each element has a specific row/column it belongs in. So far, I've manually arranged the tiles in Inkscape, but I would like to automate the process.
How best should I go about combining many Inkscape SVG files, while placing each file's contents in a specific location according to its title?
I have multiple images (more than 1000 / 288*288) with their respective coordinates (X,Y).
All pictures put together should displayed a unique picture. However some picture are missing.
Would it be possible to create a blank picture (via an array taken max(Y) and max(X)) and put each picture in the appropriate place?
Thanks
Try this: https://note.nkmk.me/en/python-pillow-concat-images/
It is a python library to work with images. You can create a blank image and then paste your images there.
I am trying to extract the text from flowcharts and decision trees. If I use the image with original boxes/shapes, the text region detection is poor. Is there any way to remove these shapes (keeping the text)?
You could use connectedComponentsWithStats(), you will have single component for the chart lines, then just remove that component from the image.
I want to create map shapes in Excel to analysing Sales and Stocks in our restaurants in NYC.
I can create own shape in Photoshop, but i don't know how to export own shapes from Photoshop to Excel.
Do you have any idea how to create map shapes in excel (ex: map of nyc by adm. district)?
From Photoshop you can save a file in .jpeg format. This can easily be imported into Excel, reshaped, and positioned as you desire.
is there any simple way to replace an image inside word-document with an excel chart using VB and preserving all of the format details such as image frame style, text wrap, anchor, etc. (thus the image is just a placeholder in a template document)
if i'm right - there is no decent way to replace an image. so i've replaced autoshape background
Charts(chart_name).Export path + "chart.gif", "GIF"
word_app.ActiveDocument.Shapes(autoshape_name).Fill.UserPicture path + "chart.gif"
...still, there is no way to set "autoshape_name" from MS Word UI.
so i must write additional macros for it. that's annoying