need resiz photo prodcts - magento-1.7

the question is > a large empty space from the bottom of the picture under add to card See the picture to find a great emptiness .
I want to put any size image to be full place there is no empty space
thank,s very much for eny one want help

Related

How to cover with a line all the detail space

Good morning, I would appreciate your help with this. I am making a report as requested, but I can not make a line cover the entire area of empty detail, in the image that I put only have two details, what I'm looking for is that line on the left extends throughout the space in white framed in red without all the details, is it possible? What should I configure in the line, thanks in advance.
Use I report 5.6.0
http://subirimagen.me/uploads/20190121164814.png
I would have put this in a comment but I don't have enough points. If the page height is immutable, and the line needs to stay the same throughout the page, you can just put that line in a background band.

using itextsharp add image under text but over other images that have been placed

Imagine a pdf with text and a application that test images over the text.
In every test pdf is saved and the next test using same pdf.
The first time you add image under text you can see the results, next time you will try you add image under is not appear because first image cover it.
So...exists something GetBetween or can i choose the layer that i want?
If i use GetUnderContent only first image appears and all others are hide.
If i use GetOverContent then the text is covered by image.

How do I insert a picture into the top of a page a word document without leaving blank spaces?

I am trying to insert pictures into a word document to be on the TOP of the inserted page.
If I choose "Top Center" or "Top Right/Left", the complete paragraph from the proceeding text jumps to be AFTER the picture, even if it 5+ lines, leaving a BIG empty blank space in the previous page.
If I choose, "In line with text", it looks good, BUT with a single line being proceeding the picture on the top of the inserted page.
I want the layout to be so that a picture be at the top of the page while the proceeding and following text stays fluid, without leaving blanks in between.
Furthermore, how can I move that inserted picture pixel by pixel using the arrows?
PLEASE HELP! It is getting REALLY frustrating, I have around 35 pictures...
Thank you!
You must set the top margin to 0cm.
(double click the blank space or open page settings)
You could use text warpping, choose behind text for around a picture.
Or right click the picture, select text wrapping then select behind text. if u want to move the picture around perfect, just right click, text wrapping, then select tight.
see screenshoot
Just saw this. What I did was insert the image, open "Format Picture" properties, select the "Picture tab" and use the 'Crop from' option to make the area of the picture larger from the bottom (using i.e. -6) which added white space at the bottom, those moving the image to the top of the page. Not great, but it worked.

SSRS: External image in tablix cell

My data set contains a column named IconUri that contains a full HTTP address to an image located on a web server. This data set is bound to a tablix, and I'd like to display the image in a cell.
1) I've tried to drag an image into the cell, but I can't use expressions as the image itself isn't aware of its parent's (the tablix) data set.
2) I've also tried to apply the image as a cell background, and while this certainly displays the image, it repeats it in horizontal and vertical direction, which is undesirable. The cell shall contain only one copy of the image.
3) I've tried to create a rectangle in the cell, but it will scale to the cell itself and thus the same effect as above.
Is there a way in which this might be done? I'm even open to performing some XML hacking if this is what is necessary. Thank you!
From the toolbox drag an image into your the cell of your tablix:
Then right click on the newly added image in the cell and select Image Properties:
Change the image source to External and then pick the dataset field that contains your product URL:
If you get the dreaded red cross instead of an image when you run the report, triple check that the URL actually does point at a publicly available image.
If your using a file from the file system rather than an image hosted at a url, you need to ensure the file path is in the form of "file:///C:/RDLCTest/TestImage.png".
If your also displaying the report in the ReportViewer control you will need to turn on EnableExternalImages for the report in code, but that isn't needed if your just outputting the report to say a PDF and downloading it
Use Image and in the image properties set the value to something like this
= Code.ConvertTotWebUrl(First(Fields!Logo.Value, "dsOrder"))
I solved this problem by examining the XML code that the editor created for the image, and I moved the relevant tag inside the tablix cell and assigned the appropriate bindings. When I re-opened the editor again, everything fell into place: the image recognizes the data source and compiling as well as rendering works flawelessly.

How to Place the background image scroll upwards while editing (adjustPan/adjustResize)

I have Struggled with the following issue..
I need an Activity Which have an editbox and a chekbox below it..These are placed at the bottom of the screen...I have a background image for this total screen..I need scrolling of the totalview(background image along with edit and check boxes) while with presence of softkeyboard...
At start It was looks good..But at the time of editing the image is Resize(shrink)/the image is overlapped by the edit & check boxes with adjustResize in manifest option...with adjustPan I could get something of requirement but the check box was still behind the Keyboard...I much tried with Scrollviews and include layout options but couldn't get the required....
Could anyone Suggest me anything regarding this..
At last I found some trick to get out of this....what I did was instead of using scrollviews...etc...just I scroll the Parent layout (ScrollTo(x,y)) to some extent upwards...Which works fine with me...